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