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