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