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