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