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