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