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