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