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