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