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