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