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