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