-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
221 lines (219 loc) · 8.23 KB
/
index.html
File metadata and controls
221 lines (219 loc) · 8.23 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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
<!doctype html>
<html lang="EN">
<head>
<title>Practice</title>
<meta charset="UTF-8">
<link rel="icon" href="images/icon.png">
<link rel="stylesheet" href="index.css">
</head>
<body>
<nav>
<a href="#t">click here to show <strong>PLACE</strong></a>
<a href="#t">click here to show <strong>PLACE</strong></a>
<a href="#t">click here to show <strong>PLACE</strong></a>
</nav>
<header>
<h1>DAN CARLO</h1>
<h1>Cavite</h1>
<h2>Information Tech</h2>
<h3>Github 2024</h3>
<h4>Git Bash 2024</h4>
<hr>
<p style="font-size:20px;"><<<© Hello Dan Carlo>>></p>
<!--LINK-->
<p><em><a style="color:rgb(90, 82, 134);" href="https://www.w3schools.com/html/html_colors.asp">Dan Carlo Sy</a></em></p>
<!--END LINK-->
<address style="font-size:20px;">
this is the address 2021-2022 practice HTML
<br>
This is practice GIT and GITHUB 2024
</address>
</header>
<hr>
<!--LIST-->
<section>
<h3>this is heading</h3>
<ul>
<li><p>this is unordered list with p for spacing</p></li>
<li>this is unordered list</li>
<li>this is unordered list</li>
</ul> DOWNLOAD
<!--DOWNLOAD FILES-->
<ul>
<li>download this link <a href="icon.png" download>photo</a></li>
</ul>
</section>
<!--END DOWNLOAD FILES-->
<section id="t">
<h3>this is heading/ PLACE</h3>
<dl>
<dt>Carmona Cavite</dt>
<dd>Yes <del>Sir</del></dd>
<dt>Laguna</dt>
<dd>Yes <sup>Mam</sup></dd>
<dt>Albay</dt>
<dd>Mayon <sub>to</sub></dd>
</dl>
<hr>
</section>
<!--END LIST-->
<!--IMAGE-->
<figure>
<img src="images/pic1.jpg" alt="panda" width="300" height="168">
<img src="images/pic1.jpg" alt="panda" width="300" height="168">
<img src="images/pic1.jpg" alt="panda" width="300" height="168">
<img src="images/pic1.jpg" alt="panda" width="300" height="168">
<figcaption>this is panda</figcaption>
</figure>
<hr>
<!--END IMAGE-->
<!--SEMANTIC TAGS-->
<main style="color:red ;">
<p>this is the main content of the website</p>
<p>this is the main content of the website</p>
</main>
<details>
<summary><mark>INFORMATION</mark>OF DAN CARLO SY</summary>
<p>BSIT 2A/2001-00351</p>
</details>
<hr>
<!--END SEMANTIC TAGS-->
<!--TABLE-->
<table>
<caption>This is a CAPTION</caption>
<!--TABLE HEADER ONLY-->
<tr>
<th> </th>
<th>NAME</th>
<th>AGE</th>
<th>LOCATION</th>
</tr>
<!--END TABLE HEADER ONLY-->
<tr>
<th> this is header for row</th>
<td>Carlo</td>
<td>20</td>
<td>Cavite</td>
</tr>
<!--WITH COLSPAN-->
<tr>
<th> this is header for row</th>
<td colspan="2">THIS IS <em>COLSPAN 2</em></td>
<td>Carmona</td>
</tr>
<!--END WITH COLSPAN-->
<!--WITH ROWSPAN-->
<tr>
<th rowspan="2"> this is header for row</th>
<td rowspan="2">THIS IS <em>ROWSPAN 2</em></td>
<td>Cavite</td>
<td>Laguna</td>
</tr>
<tr>
<td>Ilocos</td>
<td>Albay</td>
</tr>
<tr>
<th rowspan="2"> this is header for row</th>
<td rowspan="2" colspan="2" >THIS IS ROWSPAN 2 WITH COLSPAN 2</td>
<td> Dan</td>
</tr>
<tr>
<td>Burger</td>
</tr>
<!--END WITH ROWSPAN-->
</table>
<!--END TABLE-->
<hr>
<!--FORM-->
<form action="https://httpbin.org/get" method="get">
<!--TEXT TYPE-->
<fieldset style="width:10%;">
<legend>Personal Information</legend>
<p>
<label for="firstName">First Name:</label>
<input type="text" name="firstName" id="firstName" placeholder="this is TEXT" autocomplete="on"
required>
</p>
<p>
<label for="lastName">Last Name:</label>
<input type="text" name="lastName" id="lastName" placeholder="this is TEXT" autocomplete="on"
required>
</p>
<p>
<label for="Password">Password:</label>
<input type="password" name="Password" id="Password" placeholder="this is PASSWORD" required>
</p>
<!--END TEXT TYPE-->
<!--NUMBER TYPE-->
<p>
<label for="Year">Birth Year:</label>
<input style="width:150px;" type="number" name="Year" id="Year" placeholder="2000" min="2000" max="2022" step="1" required>
</p>
<!--SELECT OPTION-->
<p>
<label for="choices">Place:</label>
<select name="Place" id="choices">
<option value="Carmona">Carmona</option>
<option value="Albay">Albay</option>
<option value="Ilocos">Ilocos</option>
</select>
</p>
<!--END SELECT OPTION-->
<!--END NUMBER TYPE-->
</fieldset>
<br>
<!--RADIO BUTTON-->
<fieldset style="width:10%;">
<legend>Menu of the Restaurant</legend>
<p>
<input type="radio" name="food" id="adobo" value="adobo">
<label for="adobo">Adobo</label>
</p>
<p>
<input type="radio" name="food" id="sinigang" value="sinigang">
<label for="sinigang">Sinigang</label>
</p>
<p>
<input type="radio" name="food" id="sisig" value="sisig">
<label for="sisig">Sisig</label>
</p>
</fieldset>
<!--END RADIO BUTTON-->
<br>
<!--CHECKBOX BUTTON-->
<fieldset style="width:10%;">
<legend>Favorite Things</legend>
<p>
<input type="checkbox" name="things" id="ball" value="ball">
<label for="ball">Ball</label>
</p>
<p>
<input type="checkbox" name="things" id="pen" value="pen">
<label for="pen">Pen</label>
</p>
<p>
<input type="checkbox" name="things" id="speaker" value="speaker">
<label for="speaker">Speaker</label>
</p>
</fieldset>
<!--END CHECKBOX BUTTON-->
<br>
<!--TEXTAREA-->
<fieldset style="width:10%;">
<legend>Your Email</legend>
<p>
<label for="email">Send me an Email</label>
<textarea name="email" id="email" cols="30" rows="10" placeholder="Type your Email here:"></textarea>
</p>
</fieldset>
<!--END TEXTAREA-->
<br>
<!--BUTTONS-->
<button type="submit">Submit Information</button>
<button type="reset">Reset Information</button>
<button type="submit" formaction="https://httpbin.org/post" formmethod="post">Post Information</button>
</form>
<!--END FORM-->
</body>
</html>