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