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