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