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