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