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