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