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