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