-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub.html
More file actions
76 lines (76 loc) · 2.1 KB
/
github.html
File metadata and controls
76 lines (76 loc) · 2.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Github Profile</title>
</head>
<body>
<header>
<!-- Main navigation bar (navbar) -->
<nav>
<ul>
<li>
<img src="http://lorempixel.com/30/30" alt="Avatar">
MontealegreLuis
</li>
<li>
<a href="#">Overview</a>
</li>
<li>
<a href="#">Repositories <span>43</span></a>
</li>
<li>
<a href="#">Following <span>3</span></a>
</li>
</ul>
</nav>
</header>
<main>
<aside>
<img src="http://lorempixel.com/400/200" alt="Avatar">
<h2>Luis Montealegre <small>MontealegreLuis</small></h2>
<p class="description">
I'm a web developer and I teach at Codeup.
</p>
<ul>
<li>@gocodeup</li>
<li>San Antonio, TX</li>
</ul>
<h3>Organizations</h3>
<img src="http://lorempixel.com/50/50" alt="Organization name">
</aside>
<article>
<ul class="tabs-nav">
<li>
<a href="#">Overview</a>
</li>
<li>
<a href="#">Repositories <span>43</span></a>
</li>
</ul>
<div class="repositories">
<div class="repository">
<a href="#">Slim Modules</a>
<p>Description</p>
<span class="language">PHP</span>
<span class="stars">5</span>
</div>
</div>
</article>
</main>
<footer>
<p class="copyright">
© 2017 GitHub, Inc.
</p>
<ul>
<li><a href="#">Terms</a></li>
</ul>
<img src="#" alt="Logo">
<ul>
<li>
<a href="#">Contact</a>
</li>
</ul>
</footer>
</body>
</html>