Use on the webTotal Use [ 6396 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/b07b80d7f297d48895d3c955e2b8bbda?family=Motlleg+Fantasy" 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/b07b80d7f297d48895d3c955e2b8bbda?family=Motlleg+Fantasy);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Motlleg Fantasy";
src: url("https://db.onlinewebfonts.com/t/b07b80d7f297d48895d3c955e2b8bbda.eot");
src: url("https://db.onlinewebfonts.com/t/b07b80d7f297d48895d3c955e2b8bbda.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/b07b80d7f297d48895d3c955e2b8bbda.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/b07b80d7f297d48895d3c955e2b8bbda.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/b07b80d7f297d48895d3c955e2b8bbda.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/b07b80d7f297d48895d3c955e2b8bbda.svg#Motlleg Fantasy")format("svg");
}
2CSS rules to specify fonts
font-family: "Motlleg Fantasy";