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