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