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