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