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