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