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