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