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