-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (37 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dallas, TX</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body style="background-color: #fff0aa;">
<h1>Dallas</h1>
<a href="cityimages.html">City Images</a>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsum voluptatem quia officiis eius quibusdam incidunt,
nesciunt
fugiat eos recusandae temporibus quos facere eligendi facilis obcaecati! Deserunt sequi ut eaque beatae.</p>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Impedit aspernatur corrupti qui eveniet sit excepturi
nobis quia,
velit perferendis sint tempore ut similique repellendus nemo voluptates id? Ad, iste perspiciatis.</p>
<style>
table,
td {
border: 1px solid;
}
</style>
<table>
<tr>
<th>Name</th>
<th>Email</th>
<th>Phone</th>
</tr>
<tr>
<td>Mayor Eric Johnson</td>
<td>[email protected]</td>
<td>(214)670-0646</td>
</tr>
</table>
</body>
</html>