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