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