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