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