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