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