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