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