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