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