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