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