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