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