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