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