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