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