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