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