-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub.html
More file actions
90 lines (89 loc) · 2.19 KB
/
github.html
File metadata and controls
90 lines (89 loc) · 2.19 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
86
87
88
89
90
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>GitHub Exercise</title>
</head>
<body>
<nav>
<img src="images/github-mark.png" alt="GitHub Logo">
<ul>
<li><a href="Pull requests">Pull Request</a></li>
<li><a href="Issues">Issues</a></li>
<li><a href="Marketplace">Marketplace</a></li>
<li><a href="Explore">Explore</a></li>
</ul>
</nav>
<header>
<img src="images/codeup%20logo.jpeg" alt="Codeup Logo">
<h3>Codeup</h3>
</header>
<nav>
<ul>
<li><a href="Repos">Repos</a> 39</li>
<li><a href="People">People</a> 39</li>
<li><a href="Teams">Teams</a> 39</li>
<li><a href="Projects">Projects</a> 39</li>
<li><a href="Settings">Settings</a> 39</li>
</ul>
</nav>
<table>
<tr>Codeup's dev team</tr>
<tr>
<td><img src="http://placeholder.pics/svg/48" alt="Kent Beck">
<a href="Kent Beck">Kent Beck</a>
</tr>
<tr>
<td>KentBeck</td>
</tr>
<tr>
<td>Member</td>
</tr>
<tr>
<td>X team members</td>
</tr>
<tr>
<td><img src="http://placeholder.pics/svg/48" alt="Kent Beck">
<a href="Codeup staff">Codeup Staff</a>
</tr>
<tr>
<td>CodeupStaff</td>
</tr>
<tr>
<td>Member</td>
</tr>
<tr>
<td>X team members</td>
</tr>
<tr>
<td><img src="http://placeholder.pics/svg/48" alt="Kent Beck">
<a href="MartinF">MartinF</a>
</tr>
<tr>
<td>MartinF</td>
</tr>
<tr>
<td>Member</td>
</tr>
<tr>
<td>X team members</td>
</tr>
</table>
<footer>
<p>© 2018 Github. Inc.</p>
<p><a href="Terms">Terms</a>
<a href="Privacy">Privacy</a>
<a href="Security">Security</a>
<a href="Status">Status</a>
<a href="Help">Help</a>
<br>
<a href="Contact">Contact</a>
<a href="API">API</a>
<a href="Training">Training</a>
</p>
</footer>
</body>
</html>