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