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