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