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