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