-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotebook.html
185 lines (182 loc) · 4.78 KB
/
notebook.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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Learning Web Development</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<id="#up"/>
<!-- Headings -->
<h1 id="headings">Heading level 1</h1>
<h2>Heading level 2</h2>
<h3>Heading level 3</h3>
<h4>Heading level 4</h4>
<h5>Heading level 5</h5>
<h6>Heading level 6</h6>
<!-- Self-closing tags -->
<br>
<hr>
<br>
<!-- List -->
<ul>
<li>First element</li>
<li>Second element</li>
<li>Third element</li>
</ul>
<ol>
<li>First element</li>
<li>Second element</li>
<li>Third element</li>
</ol>
<ol start="8">
<li>First element</li>
<li>Second element</li>
<li>Third element</li>
</ol>
<ol type="a">
<li>First element</li>
<li>Second element</li>
<li>Third element</li>
</ol>
<ol type="i" start="10">
<li>First element</li>
<li>Second element</li>
<li>Third element</li>
</ol>
<!-- Self-closing tags -->
<br>
<hr>
<br>
<!-- Images -->
<img src="Images/wazowski.jpg" alt="Image of Mike Wazowski" />
<!-- Self-closing tags -->
<br>
<hr>
<br>
<!-- Links / Anchor tags -->
<p><a href="http://erykschubert.com">Eryk</a></p>
<p><a href="https://google.com">Google</a></p>
<p><a href="#headings">Headings</a></p>
<!-- Self-closing tags -->
<br>
<hr>
<br>
<!-- Tables -->
<table>
<thead>
<tr>
<th>
Dates
</th>
<th>
Work
</th>
</tr>
</thead>
<tbody>
</tbody>
<tr>
<td>2012-2013</td>
<td>Something</td>
</tr>
<tr>
<td>2014</td>
<td>Something else</td>
</tr>
</table>
<!-- Self-closing tags -->
<br>
<hr>
<br>
<!-- Forms -->
<form action="notebook.html" method="POST">
<label for="GET-name">Your name:</label>
<input type="text" name="name" id="GET-name">
<br>
<label for="">Color:</label>
<input type="color" name="" id="">
<br>
<label for="">Checkbox:</label>
<input type="checkbox" name="" id="">
<br>
<label for="">Password:</label>
<input type="password" name="" id="">
<br>
<label for="">Date:</label>
<input type="date" name="" id="">
<br>
<label for="">Local datetime:</label>
<input type="datetime-local" name="" id="">
<br>
<label for="">Email:</label>
<input type="email" name="" id="">
<br>
<label for="">File:</label>
<input type="file" name="" id="">
<br>
<label for="">Image:</label>
<input type="image" name="" id="">
<br>
<label for="">Month:</label>
<input type="month" name="" id="">
<br>
<label for="">Range:</label>
<input type="range" name="" id="">
<br>
<input type="submit" value="Save">
</form>
<hr>
<!-- Working Form -->
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<label for="yourName">Your name:</label>
<input type="text" name="yourName">
<br>
<label for="yourEmail">Your email:</label>
<input type="email" name="yourEmail">
<br>
<label for="yourMessage">Message:</label>
<br>
<textarea name="yourMessage" id="" cols="30" rows="10"></textarea>
<br>
<input type="submit" name="" id="">
</form>
<!-- Self-closing tags -->
<br>
<hr>
<br>
<!-- For CSS Purposes -->
<!-- There can by just single instance of this id -->
<p id="pierwszy_paragraf">Jestem pierwszym paragrafem.</p>
<!-- Class can be used with many objects -->
<p class="drugi_paragraf">Jestem drugim paragrafem.</p>
<!-- We can use many classes in one object -->
<img class="wazowski circural" src="Images/wazowski.png" alt="Image of Mike Wazowski" />
<br>
<!-- Moving objects with relative position -->
<div class="first-container">
<h1>R</h1>
</div>
<div class="second-container">
<h1>A</h1>
</div>
<div class="third-container">
<h1>I</h1>
</div>
<br>
<!-- Moving objects with absolute position -->
<div class="parent-container">
<p>Hello</p>
<div class="child-container"></div>
<p>There</p>
</div>
<!-- Moving objects with fixed position -->
<div class="fixed-container">
<p>I have fixed position</p>
</div>
<!-- Self-closing tags -->
<br>
<hr>
<br>
</body>
</html>