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