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