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