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