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