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