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