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