-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (60 loc) · 1.9 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Chicago - Home</title>
<link rel="stylesheet" href="css/styles.css" >
</head>
<body>
<header>
<h1 >Chicago!</h1>
</header>
<nav>
<a href="index.html">Home</a>
<a href="cityimages.html">City Images</a>
</nav>
<main>
<p>
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Iusto nam quos minus sit tempore in ipsa cumque delectus vitae? Fugit rerum, quibusdam ipsa repudiandae enim eius consectetur accusamus nemo aliquam.
</p>
<p>
Quod suscipit perspiciatis nam deserunt! Magni vero pariatur quibusdam cumque! Nihil harum asperiores minus velit non doloremque ab quis impedit, consequatur provident?
</p>
<h2>City Leaders:</h2>
<table>
<tr>
<th>Name</th>
<th>Email</th>
<th>Phone</th>
</tr>
<tr>
<td>Alexander Johnson</td>
<td>[email protected]</td>
<td>(312) 555-0182</td>
</tr>
<tr>
<td>Beatrice Kim</td>
<td>[email protected]</td>
<td>(312) 555-0924</td>
</tr>
<tr>
<td>Carlos Mendez</td>
<td>[email protected]</td>
<td>(312) 555-0736</td>
</tr>
<tr>
<td>Diana Rodriguez</td>
<td>[email protected]</td>
<td>(312) 555-0567</td>
</tr>
<tr>
<td>Ethan Wright</td>
<td>[email protected]</td>
<td>(312) 555-0198</td>
</tr>
</table>
</main>
<footer>
Copyright © 2024 YearUp Class!
</footer>
</body>
</html>