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