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