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