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