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