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