-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgithub.html
117 lines (110 loc) · 3.93 KB
/
github.html
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Github example</title>
</head>
<body>
<!-- Navigation Bar -->
<nav style="background-color: black; color:white">
<svg width="30" height="30" xmlns="http://www.w3.org/2000/svg">
<rect x="2" y="2" width="26" height="26" style="fill:#DEDEDE;stroke:#555555;stroke-width:2"/>
<text x="50%" y="50%" font-size="18" text-anchor="middle" alignment-baseline="middle"
font-family="monospace, sans-serif" fill="#555555"></text>
</svg>
<a style="color: white">Pull Request</a>
<a style="color: white">Issues</a>
<a style="color: white">Marketplace</a>
<a style="color: white">Explore</a>
</nav>
<!-- Main -->
<main>
<section>
<header>
<svg width="30" height="30" xmlns="http://www.w3.org/2000/svg">
<rect x="2" y="2" width="26" height="26" style="fill:#DEDEDE;stroke:#555555;stroke-width:2"/>
<text x="50%" y="50%" font-size="18" text-anchor="middle" alignment-baseline="middle"
font-family="monospace, sans-serif" fill="#555555"></text>
</svg>
Codeup
</header>
<div>
<button id="repositories">
Repositories
</button>
<button id="people">
People
</button>
<button id="teams">
Teams
</button>
<button id="projects">
Projects
</button>
</div>
<table>
<thead>
<th colspan="3">Codeup's dev team</th>
</thead>
<tbody>
<tr>
<td>
<svg width="48" height="48" xmlns="http://www.w3.org/2000/svg">
<rect x="2" y="2" width="44" height="44" style="fill:#DEDEDE;stroke:#555555;stroke-width:2"/>
<text x="50%" y="50%" font-size="18" text-anchor="middle" alignment-baseline="middle"
font-family="monospace, sans-serif" fill="#555555"></text>
</svg>
Kent Beck
</td>
<td>Member</td>
<td>1 team</td>
</tr>
<tr>
<td>
<svg width="48" height="48" xmlns="http://www.w3.org/2000/svg">
<rect x="2" y="2" width="44" height="44" style="fill:#DEDEDE;stroke:#555555;stroke-width:2"/>
<text x="50%" y="50%" font-size="18" text-anchor="middle" alignment-baseline="middle"
font-family="monospace, sans-serif" fill="#555555"></text>
</svg>
Code Instruction Staff
</td>
<td>Member</td>
<td> 1 team</td>
</tr>
<tr>
<td>
<svg width="48" height="48" xmlns="http://www.w3.org/2000/svg">
<rect x="2" y="2" width="44" height="44" style="fill:#DEDEDE;stroke:#555555;stroke-width:2"/>
<text x="50%" y="50%" font-size="18" text-anchor="middle" alignment-baseline="middle"
font-family="monospace, sans-serif" fill="#555555"></text>
</svg>
Martin Fowler
</td>
<td>Member</td>
<td> 0 team</td>
</tr>
</tbody>
</table>
</section>
</main>
<!-- Footer -->
<footer>
<span>©2018 Github</span>
<span>
<a href="">Terms</a>
<a href="">Privacy</a>
<a href="">Security</a>
<a href="">Status</a>
<a href="">Help</a>
</span>
<span>
<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>
</span>
</footer>
</body>
</html>