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