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