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