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