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