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