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