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