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