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