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