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