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