-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable.html
44 lines (41 loc) · 1.03 KB
/
table.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
<!DOCTYPE html>
<html>
<head>
<title>My Web Page!</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<form>
<input type="text" placeholder="Full Name" name="name" />
<button>Submit!</button>
</form>
<div id="top">Hello <span class="name">Ryan!</span></div>
<div id="middle">Hello <span class="name"> Angel</span></div>
<div id="bottom">Hello my friend, <span class="name">Ahmad!</span></div>
<h1>
Welcome to my beautiful new web page!
</h1>
<p>
This is a parapgraph in turqoise! I think!
</p>
<p>this is a another paragreaph that should be right aligned and red</p>
<div>Hello, world! This is a div!</div>
<h1>Presidents</h1>
<table>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Years in Office</th>
</tr>
<tr>
<td>George</td>
<td>Washington</td>
<td>1777-12212</td>
</tr>
<tr>
<td>John</td>
<td>Adams</td>
</tr>
</table>
</body>
</html>