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