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