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