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