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