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