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