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