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