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