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