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