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