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