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