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