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