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