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