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