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