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