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