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