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