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