Use on the webTotal Use [ 5373 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/0de384a1f3bb8d018cf30065117bd56a?family=Morgus+the+Magnificent" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/0de384a1f3bb8d018cf30065117bd56a?family=Morgus+the+Magnificent);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Morgus the Magnificent";
src: url("https://db.onlinewebfonts.com/t/0de384a1f3bb8d018cf30065117bd56a.eot");
src: url("https://db.onlinewebfonts.com/t/0de384a1f3bb8d018cf30065117bd56a.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/0de384a1f3bb8d018cf30065117bd56a.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/0de384a1f3bb8d018cf30065117bd56a.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/0de384a1f3bb8d018cf30065117bd56a.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/0de384a1f3bb8d018cf30065117bd56a.svg#Morgus the Magnificent")format("svg");
}
2CSS rules to specify fonts
font-family: "Morgus the Magnificent";