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