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