-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsimplePage.html
More file actions
59 lines (51 loc) · 1.78 KB
/
simplePage.html
File metadata and controls
59 lines (51 loc) · 1.78 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
<!DOCTYPE html>
<html>
<body>
<h1> Addresses </h1>
<ul>
<li>
<div id = "name"><a href = "http:/www.meetup.com">Alexander, Jones</a></div>
<p class = "add">123, Maple Drive</p>
<div class = "city"> <span>Indianapolis</span>
<p geo = "state">IN</p>
<p geocode = "zip">12345</p>
</div>
<span class = "comm">
<p type = "phone">317-123-4567</p>
<p type = "email">jabc@gmail.com</p>
</span>
</li>
<li>
<div id = "name"><a href = "http:/www.google.com">Liz, Phillips</a></div>
<p class = "add">123, Walnut Drive</p>
<div class = "city"><span>Chicago</span>
<p geo = "state">IL</p>
<p geocode = "zip">67809</p>
</div>
</li>
<li>
<div id = "name"><a href = "http:/www.google.com">Joe, Whoisit</a></div>
<p class = "add">999, Icecream Blvd</p>
<div class = "city"><span>New York</span>
<p geo = "state">NY</p>
<p geocode = "zip">54321</p>
</div>
<span class = "comm">
<p type = "phone">123-999-4567</p>
<p type = "email">jwhst@yahoo.com</p>
</span>
</li>
<li>
<div id = "name"><a href = "http:/www.google.com">Hello, Howareyou</a></div>
<p class = "add">843, Crazy Drive</p>
<div class = "city"><span>San Francisco</span>
<p geo = "state">CA</p>
<p geocode = "zip">11111</p>
</div>
<span class = "comm">
<p type = "email">hhru@yahoo.com</p>
</span>
</li>
</ul>
</body>
</html>