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