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