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