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