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