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