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