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