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