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