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