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