-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (93 loc) · 4.01 KB
/
index.html
File metadata and controls
112 lines (93 loc) · 4.01 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Your Repositories</title>
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/f5c0f26b2c.js" crossorigin="anonymous"></script>
</head>
<body>
<header class="parent">
<div class="first">
<div class="logo">
<a href="https://github.com/"><i class="fab fa-github"></i></a>
</div>
<div class="form-group">
<input type="text" class="form-control" placeholder="Search or jump to...">
</div>
<div class="links">
<ul>
<li><a href="https://github.com/">Pull requests</a></li>
<li><a href="https://github.com/">Issues</a></li>
<li><a href="https://github.com/">Marketplace</a></li>
<li><a href="https://github.com/">Explore</a></li>
</ul>
</div>
</div>
<div class="second">
<div class="icons">
<ul>
<li><a href="#"><i class="far fa-bell"></i></a></li>
<li><a href="#"><i class="fas fa-plus"></i></a></li>
<li><a href="#"><i class="fas fa-angle-down"></i></a></li>
</ul>
</div>
</div>
</header>
<section class="section">
<div class="section-list">
<ul>
<li><a href="#"><img src="/Images/open-book-svgrepo-com.svg" alt=""> Overview</a></li>
<li class="active"><a href="#"><img class="side-imgs" src="/Images/repos.png" alt=""> Repositories <span>23</span></a></li>
<li><a href="#"><img src="/Images/projects.svg" alt=""> Projects</a></li>
<li><a href="#"><img src="/Images/packages.svg" alt=""> Packages</a></li>
</ul>
</div>
</section>
<section class="container-1">
<div class="child-1">
<div class="info">
<div class="card">
<img class="avatar" src="/Images/avatar.JPG" alt="Avatar">
<p class="name">Raymond Belamo <span>raymondbelamo</span></p>
<p class="about">Aspiring fullstack developer</p>
<button class="btn-profile btn-first"><a href="#"></a>Edit Profile</button>
</div>
</div>
</div>
<div class="child-2">
<div class="first">
<div class="form-group">
<input type="text" class="form-control" placeholder="Find a repository...">
</div>
<div class="btn">
<button class="btn-global btn-first">Type: All<li><a href="#"><i class="fas fa-angle-down"></i></a></li></button>
</div>
<div class="btn">
<button class="btn-global btn-first">Language: All<li><a href="#"><i class="fas fa-angle-down"></i></a></li></button>
</div>
<div class="btn">
<button class="btn-global btn-second">New<li><a href="#"></a></li></button>
</div>
</div>
<div class="repos">
<div class="repo-group">
<div class="block-1">
<a href="#">github-clone</a>
<button class="btn-repo btn-first"><i class="far fa-star"></i>Star<a href="#"></button>
</div>
<div class="block-2">
<div class="sub">
<p><span></span>CSS</p>
<p>Updated 4 days ago</p>
</div>
</div>
</div>
</div>
</div>
</section>
<script src="app.js"></script>
</body>
</html>