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