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