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