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