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