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