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