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