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