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