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