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