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