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