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