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