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