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