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