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