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