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