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