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