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