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