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