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