-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub.html
More file actions
76 lines (70 loc) · 1.59 KB
/
Copy pathgithub.html
File metadata and controls
76 lines (70 loc) · 1.59 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Github Exercise</title>
</head>
<body>
<header>
<img src="img/img_2.png" alt="Github logo" width="20">
</header>
<nav>
<ul>
<li><a href="#">Pull requests</a></li>
<li><a href="#">Issues</a></li>
<li><a href="#">Marketplace</a></li>
<li><a href="#">Explore</a></li>
</ul>
</nav>
<nav>
<img src="img/img_1.png" alt="Codeup's logo" width="60">
<h3>Codeup</h3>
</nav>
<nav>
<ul>
<li><a href="#">Repos <span>39</span></a></li>
<li><a href="#">People <span>39</span></a></li>
<li><a href="#">Teams <span>39</span></a></li>
<li><a href="#">Projects <span>30</span></a></li>
<li><a href="#">Settings <span>39</span></a></li>
</ul>
</nav>
<main>
<h4>Codeup's dev team</h4>
<div>
<img src="https://fer-uig.glitch.me" alt="user-icon" />
<a href="#">Kent Beck</a>
<p>KentBeck</p>
<p>Member</p>
<p>X Team Member</p>
</div>
<div>
<img src="https://fer-uig.glitch.me?uuid=1" alt="user-icon" />
<a href="#">Codeup Staff</a>
<p>CodeupStaff</p>
<p>Member</p>
<p>X Team Member</p>
</div>
<div>
<img src="https://fer-uig.glitch.me?uuid=999" alt="user-icon" />
<a href="#">MartinF</a>
<p>MartinF</p>
<p>Member</p>
<p>X Team Member</p>
</div>
</main>
<footer>
<nav>© 2018 Github.Inc.</nav>
<br>
<a href="#">Terms</a>
<a href="#">Privacy </a>
<a href="#"> Security</a>
<a href="#"> Status</a>
<a href="#"> Help</a>
<br>
<a href="#"> Contact</a>
<a href="#"> API</a>
<a href="#"> Training</a>
</footer>
</body>
</html>