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