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