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