-
Notifications
You must be signed in to change notification settings - Fork 76
/
home.html
167 lines (118 loc) · 4.88 KB
/
home.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<title>CSS Demo</title>
</head>
<body>
<div class="border">
<h1>Borders</h1>
</div>
<div class="margins">
<h1>Margins</h1>
<div id="margin_container">
This is just some random text.
</div>
</div>
<div class="padding">
<h1>Padding</h1>
<div id="padding_container">
This is just some random text.
</div>
</div>
<div class="box">
<h1>Box</h1>
<img src="images/boxmodel-image.png">
<h3>Total element width = width + left padding + right padding + left border + right border + left margin + right margin</h3>
<h3>Total element height = height + top padding + bottom padding + top border + bottom border + top margin + bottom margin</h3>
</div>
<div class="text">
<h1>Text Formatting</h1>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Ratione, consectetur. Nisi hic rerum, consequuntur deserunt expedita quibusdam facere libero error tenetur aliquam doloribus necessitatibus aliquid nostrum corrupti esse delectus vel.
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Corporis dolor laudantium illo! Architecto amet aliquam consequatur! Sint excepturi ut corporis ea saepe incidunt nemo fuga! In veritatis voluptatum consequatur non!
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Culpa, perferendis optio maiores repellendus beatae voluptatum eligendi ex reprehenderit quaerat excepturi deserunt voluptates dolore corporis voluptatem commodi ad aspernatur nostrum illo.
</p>
</div>
<div class="icon">
<h1>Icons and links</h1>
<i class="material-icons md-18">face</i>
<i class="material-icons md-24">alarm</i>
<i class="material-icons md-36">face</i>
<i class="material-icons md-48">duo</i><br>
<i class="material-icons md-18">reply</i>
<i class="material-icons md-24">contacts</i>
<i class="material-icons md-36">phone</i>
<i class="material-icons md-48">send</i>
<br><br><br><br>
<a href="#" >CLICK ME!</a>
</div>
<div class="list">
<h1>List</h1>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
</ul>
<ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
</ol>
<dl>
<dt>Heading 1</dt>
<dd>Description of heading 1</dd>
<dt>Heading 2</dt>
<dd>Description of heading 2</dd>
</dl>
</div>
<div class="table">
<h1>Table</h1>
<table>
<tr>
<th>First Name</th>
<th>Last Name</th>
</tr>
<tr>
<td>Ganesh</td>
<td>Gaitonde</td>
</tr>
<tr>
<td>Trivedi</td>
<td>Bach jayega</td>
</tr>
<tr>
<td>Gangadhar</td>
<td>Shaktiman</td>
</tr>
<tr>
<td>Dhinchak</td>
<td>Pooja</td>
</tr>
<tr>
<td>Kamlesh</td>
<td>Dun Dun Dun</td>
</tr>
<tr>
<td>Pramod Singh</td>
<td>Allahabadi</td>
</tr>
</table>
</div>
<div class="misc">
<h1>Misc</h1>
<!--<h1 style="display: block">hello </h1>
<h1 style="display: block"> Can you hear</h1>
<h1 style="display: block">me ?</h1>-->
<!--<h1 style="display: inline">hello </h1>
<h1 style="display: inline"> Can you hear</h1>
<h1 style="display: inline">me ?</h1>-->
<!--Max width-->
</div>
</body>
</html>