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