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