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