-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub.html
More file actions
94 lines (91 loc) · 2.52 KB
/
github.html
File metadata and controls
94 lines (91 loc) · 2.52 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
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Github Clone</title>
</head>
<body>
<header>
<nav>
<div id="main-nav" style="background-color: darkgray">
<img src="http://placeholder.pics/svg/30" alt="Github Logo" />
<a href="..." style="padding-right: 2px">Pull Request</a>
<a href="..." style="padding-right: 2px">Issues</a>
<a href="..." style="padding-right: 2px">Marketplace</a>
<a href="..." style="padding-right: 2px">Explore</a>
</div>
</nav>
</header>
<section style="padding: 10px; background-color: aliceblue">
<div>
<img
src="http://placeholder.pics/svg/30"
alt="Codeup Logo"
style="padding: 5px"
/>
<h3 style="float: left">Codeup</h3>
</div>
<div>
<a href="..." style="padding-right: 2px">Repositories</a>
<a href="..." style="padding-right: 2px">People</a>
<a href="..." style="padding-right: 2px">Teams</a>
<a href="..." style="padding-right: 2px">Projects</a>
<a href="..." style="padding-right: 2px">Settings</a>
</div>
</section>
<section>
<table>
<tr>
<th>Codeup's dev team</th>
</tr>
<tr>
<td>
<img src="https://fer-uig.glitch.me?uuid=111" alt="user-icon" /><a
href="..."
>Kent Beck</a
>
</td>
<td>Member</td>
<td>1 team</td>
</tr>
<tr>
<td>
<img src="https://fer-uig.glitch.me?uuid=756" alt="user-icon" /><a
href="..."
>Codeup Staff</a
>
</td>
<td>Member</td>
<td>1 team</td>
</tr>
<tr>
<td>
<img src="https://fer-uig.glitch.me?uuid=7234" alt="user-icon" /><a
href="..."
>Martin Flower</a
>
</td>
<td>Member</td>
<td>0 team</td>
</tr>
</table>
</section>
<footer>
<nav>
<p>
© 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</a>
<a href="...">Training</a>
<a href="...">Shop</a>
<a href="...">Blog</a>
<a href="...">About</a>
</p>
</nav>
</footer>
</body>
</html>