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