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