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