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