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