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