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