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