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