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