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