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