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