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