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