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