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