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