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