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