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