-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub.html
More file actions
85 lines (84 loc) · 2.5 KB
/
github.html
File metadata and controls
85 lines (84 loc) · 2.5 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
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Recreating GitHub</title>
</head>
<body>
<header>Recreating GitHub</header>
<main>
<img src="img/GitHub-Logo.png" width="30" height="30" alt="GitHub Logo">
<nav>
<ul>
<li><a href="#">Pull request</a></li>
<li><a href="#">Issues</a></li>
<li><a href="#">Marketplace</a></li>
<li><a href="#">Explore</a></li>
</ul>
</nav>
<img src="img/CodeUp-Logo.jpg" width="60" height="60" alt="CodeUp Logo">
<h2>CodeUp</h2>
<section>
<nav>
<ul>
<li><a href="#">Repos 39</a></li>
<li><a href="#">People 39</a></li>
<li><a href="#">Teams 39</a></li>
<li><a href="#">Projects 39</a></li>
<li><a href="#">Settings 39</a></li>
</ul>
</nav>
</section>
<section>
<nav>
<p>CodeUp's dev team</p>
<table>
<tr>
<img src="https://fer-uig.glitch.me" alt="user-icon"/>
<a href="#">Kent Beck</a>
<br><strong>KentBeck</strong>
<br><strong>Member</strong>
<br><strong>X team members</strong>
</tr>
</table>
<table>
<tr>
<img src="https://fer-uig.glitch.me" alt="user-icon"/>
<a href="#">CodeupStaff</a>
<br><strong>CodeupStaff</strong>
<br><strong>Member</strong>
<br><strong>X team members</strong>
</tr>
</table>
<table>
<tr>
<img src="https://fer-uig.glitch.me" alt="user-icon"/>
<a href="#">MartinF</a>
<br><strong>MartinF</strong>
<br><strong>Member</strong>
<br><strong>X team members</strong>
</tr>
</table>
</nav>
</section>
</main>
<footer><strong>© 2018 GitHub.Inc.</strong>
<br>
<tablef>
<tr>
<a href="#">Terms</a>
<a href="#">Privacy</a>
<a href="#">Security</a>
<a href="#">Status</a>
<a href="#">Help</a>
</tr>
<br>
<tr>
<a href="#">Contact</a>
<a href="#">API</a>
<a href="#">Training</a>
</tr>
</tablef>
</footer>
</body>
</html>