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