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