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