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