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