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