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