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