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