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