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