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