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