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