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