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