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