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