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