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