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