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