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