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