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