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