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