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