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