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