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