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