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