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