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