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