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