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