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