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