-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub.html
More file actions
67 lines (64 loc) · 1.79 KB
/
github.html
File metadata and controls
67 lines (64 loc) · 1.79 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
<!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>Git Hub HTML</title>
</head>
<body>
<nav>
<img src="img/30x30.svg" alt="">
<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>
<header>
<img src="img/48x48.svg" alt="">
<h4>Codeup</h4>
<nav>
<ul>
<li><a href="#">Repos</a> 39</li>
<li><a href="#">People</a> 39</li>
<li><a href="#">Teams</a> 39</li>
<li><a href="#">Projects</a> 39</li>
<li><a href="#">Settings</a> 39</li>
</ul>
</nav>
</header>
<main>
<table>
<tr>Codeup's dev team</tr>
<td>
<img src="https://fer-uig.glitch.me" alt="KentBeck">
<a href="img/30x30.svg">Kent Beck</a> <br>KentBeck <br>Member
</td>
<br>
</table>
<table>
<tr> X team members</tr>
<td>
<img src="https://fer-uig.glitch.me" alt="Codeup Staff">
<a href="img/30x30.svg">Codeup Staff</a> <br>CodeupStaff <br>Member
</td>
</table>
<table>
<tr> X team members</tr>
<td>
<img src="https://fer-uig.glitch.me/" alt="Martin F">
<a href="img/30x30.svg">MartinF</a> <br>Member <br>X team members
</td>
</table>
<footer>
©2018 Github. Inc.<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>
</nav>
</main>
</body>
</html>