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