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