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