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