-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub.html
More file actions
68 lines (67 loc) · 2.03 KB
/
github.html
File metadata and controls
68 lines (67 loc) · 2.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>GitHub Exercise</title>
</head>
<body>
<header>
<h2>GitHub</h2>
<img src="img/placeHolder30x30.svg" alt="Github logo">
<nav>
<ul>
<li><a href="">Requests</a></li>
<li><a href="">Issues</a></li>
<li><a href="">Marketplace</a> </li>
<li><a href="">Explore</a></li>
</ul>
</nav>
</header>
<main>
<img src="img/placeHolder48x48.svg" alt="Codeup Duck">
<h2>Codeup</h2>
<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>
<p>Codeup's Dev team members:</p>
<img src="img/randomUserTwo.jpeg" alt="Image of Kimberly Kracov"> <a href="">Kimberly Kracov</a>
<p>
Name: Kimberly Kracov
<br>Member id: 289
<br>Team: Delta
</p>
<img src="img/randomUserThree.jpeg" alt="Image of Jake Thomas"> <a href="">Jake Thomas</a>
<p>
Name: Jake Thomas
<br>Member id: 007
<br>Team: Delta
</p>
<img src="img/randomUserOne.jpeg" alt="Image of Justin Case"> <a href="">Justin Case</a>
<p>
Name: Justin Case
<br>Member id: 539
<br>Team: Delta
</p>
</main>
<footer>
<br>
<p> ©2018 GitHub INC.</p>
<p>
<a href="">Terms</a> <!--Normally the hrefs will have references e.g. Terms href="#terms" -->
<a href="">Privacy</a>
<a href="">Security</a>
<a href="">Help</a><br>
<a href="">API</a>
<a href="">Settings</a>
<a href="">Contact</a>
<a href="">Training</a>
</p>
</footer>
</body>
</html>