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