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