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