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