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