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