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