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