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