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