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