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