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