-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub.html
More file actions
54 lines (54 loc) · 1.8 KB
/
github.html
File metadata and controls
54 lines (54 loc) · 1.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>GitHub Teams</title>
</head>
<body>
<nav>
<img src="img/30x30.svg" alt="github logo">
<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>
<main>
<h3><img src="img/30x30.svg" alt="codeup logo"> CodeUp</h3>
<ul>
<li><a href="#">Repository's</a> XX</li>
<li><a href="#">People</a> XX</li>
<li><a href="#">Teams</a> XX</li>
<li><a href="#">Projects</a> XX</li>
<li><a href="#">Settings</a></li>
</ul>
<article>
<strong>CodeUp's dev team</strong><br>
<table>
<tr>
<td><img src="img/48x48.svg" alt="Kent Beck"><a href="#">Kent Beck</a></td>
<td>kentbeck</td>
<td>member</td>
<td>x teams</td>
</tr>
<tr>
<td><img src="img/48x48.svg" alt="CodeUp Staff"><a href="#">CodeUp Instruction Staff</a></td>
<td>CodeupInstructors</td>
<td>member</td>
<td>x teams</td>
</tr>
<tr>
<td><img src="img/48x48.svg" alt="Martin Fowler"><a href="#">Martin Fowler</a></td>
<td>member</td>
<td>x teams</td>
</tr>
</table>
</article>
</main>
<footer>
© 2018 Github inc. <a href="#">Terms</a> <a href="#">Privacy</a> <a href="#">Security</a> <a href="#">Status</a> <a href="#">Help</a> <a href="#">Contact Github</a> <a href="#">API</a>
<a href="#">Training</a> <a href="#">Shop</a> <a href="#">Blog</a> <a href="#">About</a>
</footer>
</body>
</html>