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