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