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