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