Skip to content

Commit 8f0f619

Browse files
committed
Update
1 parent 3c57a1a commit 8f0f619

File tree

4 files changed

+147
-0
lines changed

4 files changed

+147
-0
lines changed

forms.html

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<!doctype html>
2+
<html lang="en-US">
3+
<head>
4+
<title>Front End</title>
5+
</head>
6+
<body>
7+
8+
<form action="post.php" method="post">
9+
<div>
10+
<label for="input_name">Name:</label>
11+
<input id="input_name" type="text" placeholder="Name">
12+
</div>
13+
<div>
14+
<input type="email" placeholder="Email">
15+
</div>
16+
<div>
17+
<input type="password" placeholder="Password">
18+
</div>
19+
<div>
20+
<textarea rows="10" cols="20"></textarea>
21+
</div>
22+
<div>
23+
<input type="submit" value="Send Form">
24+
</div>
25+
</form>
26+
27+
</body>
28+
</html>

grouping.html

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<title>Grouping</title>
5+
</head>
6+
<body>
7+
8+
<div>
9+
This is some text in a div
10+
</div>
11+
12+
<h1>Grocery List</h1>
13+
<ol>
14+
<li>Bananas</li>
15+
<li>Beans</li>
16+
<li>Soup</li>
17+
<li>Random
18+
<ol>
19+
<li>Campells</li>
20+
<li>Hungry Man</li>
21+
</ol>
22+
</li>
23+
</ol>
24+
25+
<hr>
26+
27+
<h2>Animals</h2>
28+
<ul>
29+
<li>Dog</li>
30+
<li>Cat</li>
31+
<li>Random
32+
<ul>
33+
<li>Pigeon</li>
34+
<li>Horse</li>
35+
</ul>
36+
</li>
37+
</ul>
38+
39+
</body>
40+
</html>

index.html

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<!doctype html>
2+
<html lang="en-US">
3+
<head>
4+
<title>Front End</title>
5+
</head>
6+
<body>
7+
8+
<a href="grouping.html">Grouping</a>
9+
<a href="tables.html">Tables</a>
10+
<a href="forms.html">Forms</a>
11+
12+
<h1>Heading 1</h1>
13+
<p>Sample <em>Text</em> Here</p>
14+
15+
<h2>Heading 2</h2>
16+
<p>Sample <strong>Text Here</strong></p>
17+
18+
<h3>Heading 3</h3>
19+
<p>Sample <small>Text Here</small></p>
20+
21+
<h4>Heading 4</h4>
22+
<p>Sample <sup>Text Here</sup></p>
23+
24+
<blockquote>
25+
"It was the best of times,<br>
26+
it was the worst times,<br>
27+
it was the age of wisdom..."
28+
</blockquote>
29+
30+
<code>
31+
This is text
32+
This is text
33+
</code>
34+
35+
<pre>
36+
&lt;html&gt;This is text
37+
This is text
38+
</pre>
39+
40+
</body>
41+
</html>

tables.html

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<!doctype html>
2+
<html lang="en-US">
3+
<head>
4+
<title>Front End</title>
5+
</head>
6+
<body>
7+
8+
<table>
9+
<thead>
10+
<tr>
11+
<th>Name</th>
12+
<th>Age</th>
13+
<th>Gender</th>
14+
</tr>
15+
</thead>
16+
<tfoot>
17+
<tr>
18+
<td>end</td>
19+
<td>end</td>
20+
<td>end</td>
21+
</tr>
22+
</tfoot>
23+
<tbody>
24+
<tr>
25+
<td>Jesse</td>
26+
<td>29</td>
27+
<td>M</td>
28+
</tr>
29+
<tr>
30+
<td>John</td>
31+
<td>35</td>
32+
<td>M</td>
33+
</tr>
34+
</tbody>
35+
</table>
36+
37+
</body>
38+
</html>

0 commit comments

Comments
 (0)