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