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