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