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