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