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