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