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