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