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