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