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