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