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