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