-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (64 loc) · 2.49 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" />
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="./bootstrap.min.css">
<title>Github Profile Viewer</title>
</head>
<body>
<div class="mainintro row mb-1 pb-5">
<div class="col-lg-6 col-md-12 col-sm-12">
<div class="bgi">
<img src="./assests/Online world-cuate.png" alt="">
</div>
</div>
<div class="col-lg-6 col-md-12 col-sm-12">
<div class="icontext">
<h1>GITHUB PROFILE VIEWER</h1>
</div>
<div class="intro-btn ">
<button class="explore"><a href="#search">Explore</a></button>
</div>
</div>
</div>
<div id="search" class="intro row">
<form action="">
<div class="input-group">
<input id="username" required="" type="text" name="text" autocomplete="off" class="input">
<label class="user-label">GitHub UserName</label>
</div>
<button style="margin-top: 15%;" type="submit">search <span class="material-symbols-outlined">person_search</span></button>
</form>
</div>
<div class="maincontainer row">
<div class="col-sm-12 col-md-6 col-lg-6 mb-1">
<div class="profilepic">
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-6 mb-1">
<div class="context">
<h1 class="name">GOKUL RAM</h1>
<h4 class="username">gokul-ram-j</h4>
<h4 class="bio">hlo everyone</h4>
<h4 class="created">created at 2004</h4>
<h4 class="email">gokulram221@gmail.com</h4>
<h4 class="location">location</h4>
<h4 class="followers">folowers:69</h4>
<h4 class="repos">total number of repository: 41</h4>
<h4 class="url"><a href="">www.gokulram.com</a></h4>
</div>
</div>
<div class="nouser">
<h1>NO USER EXIST</h1>
</div>
</div>
<h1 class="title">REPOSITORY</h1>
<div class="repocontainer row p-3">
</div>
<script src="./bootstrap.bundle.js"></script>
<script src="./app.js"></script>
</body>
</html>