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