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