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