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