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