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