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