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