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