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