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