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