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