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