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