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