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