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