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