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