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