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