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