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