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