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