-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
196 lines (145 loc) · 5.87 KB
/
index.html
File metadata and controls
196 lines (145 loc) · 5.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Component Library | Tridib</title>
<link href="styles.css" rel="stylesheet" />
</head>
<body>
<h1 style="text-align: center;">Component Library by Tridib</h1>
<p style="text-align:center">Created this is to make life a bit simple !</p>
<hr>
<p style="text-align:center">
<img src="images/header1.svg" width=400 />
</p>
<h4 style="color: #B00020;text-align:center">⚠️ Library is currently under construction ⚠️</h4>
<hr>
<h2>@typography</h2>
<h1 style="color: #121212;">This is the #h1 heading</h1>
<h2 style="color: #121212;">This is the #h2 heading</h2>
<p>This is a paragraph</p>
<p><strong>This is a bold text</strong></p>
<small>This is a smaller text</small>
<hr>
<h2>@container</h2>
<h3 class="sub-heading">fluid container</h3>
<div class="container">This is a fluid container and it spans the entire page width.</div>
<h3 class="sub-heading" style="text-align: center;">centered container</h3>
<div class="container container-center">This is a centered container and it spans the specified width.</div>
<hr>
<h2>@links</h2>
<a class="link link-primary" href="https://html-components.netlify.app/">Primary Link</a>
<a class="link link-secondary" href="https://html-components.netlify.app/">Secondary Link</a>
<hr>
<h2>@lists</h2>
<h3 class="sub-heading">unordered list</h3>
<p>Without the bullets</p>
<ul class="ul-remove-bullet">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<h3 class="sub-heading">unordered inline list</h3>
<ul class="ul-remove-bullet">
<li class="ul-inline-item">Inline Item 1</li>
<li class="ul-inline-item">Inline Item 2</li>
<li class="ul-inline-item">Inline Item 3</li>
</ul>
<h3 class="sub-heading">reverse ordered list</h3>
<ol reversed>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
<hr>
<h2>@nav-bar</h2>
<nav class="navigation container">
<div class="nav-title">Title Here</div>
<ul class="ul-remove-bullet nav-pills">
<li class="ul-inline-item">
<a class="link current-select" href="#URL">Home</a>
</li>
<li class="ul-inline-item">
<a class="link" href="#URL">Services</a>
</li>
<li class="ul-inline-item">
<a class="link" href="#URL">Pricing</a>
</li>
<li class="ul-inline-item">
<a class="link" href="#URL">About</a>
</li>
</ul>
</nav>
<hr>
<h2>@header</h2>
<header class="hero">
<img class="hero-image" src="images/header1.svg" />
<h1 style="color: #121212;" class="hero-heading">Hey folks i am a <span class="heading-focus">web
developer</span></h1>
</header>
<hr>
<h2>@section</h2>
<section class="section">
<div class="container container-center">
<h1 class="sub-heading">Section has white background</h1>
<p>We are an open community of developers building resources for a better Web, regardless of brand, browser,
or platform. Anyone can contribute and each person who does makes us stronger. Together we can continue
to drive innovation on the Web to serve the greater good. It starts here, with you.</p>
</div>
</section>
<section class="section section-color">
<div class="container container-center">
<h1 class="sub-heading">Section has off-white background</h1>
<p>We are an open community of developers building resources for a better Web, regardless of brand, browser,
or platform. Anyone can contribute and each person who does makes us stronger. Together we can continue
to drive innovation on the Web to serve the greater good. It starts here, with you.</p>
</div>
</section>
<hr>
<!-- Pie Chart -->
<h2>@pie-chart</h2>
<div id="piechart" class="center"></div>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript">
// Load google charts
google.charts.load('current', { 'packages': ['corechart'] });
google.charts.setOnLoadCallback(drawChart);
// Draw the chart and set the chart values
function drawChart() {
var data = google.visualization.arrayToDataTable([
['Task', 'Hours per Day'],
['Work', 9],
['Sleep', 7],
['Workout', 1],
['Hangout', 2],
['Learn', 5],
]);
// Optional; add a title and set the width and height of the chart
var options = { 'title': 'Daily Tasks', 'width': 550, 'height': 400 };
// Display the chart inside the <div> element with id="piechart"
var chart = new google.visualization.PieChart(document.getElementById('piechart'));
chart.draw(data, options);
}
</script>
<hr>
<h2>@footer</h2>
<footer class="footer">
<div class="footer-header">Footer heading</div>
<ul class="social-links ul-remove-bullet">
<li class="ul-inline-item">
<a class="link" href="/">Social 1</a>
</li>
<li class="ul-inline-item">
<a class="link" href="/">Social 2</a>
</li>
<li class="ul-inline-item">
<a class="link" href="/">Social 3</a>
</li>
</ul>
</footer>
<hr>
<br>
<p style="text-align:center">Made with 💚 by <a href="https://github.com/tridib2003">Tridib</a></p>
</body>
</html>