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