-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (81 loc) · 2.56 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SPARS</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="flex-container">
<div class="imageI">
<img
src="https://images.unsplash.com/photo-1583864697784-a0efc8379f70?ixid=MnwxMjA3fDB8MHxzZWFyY2h8MjV8fG1hbnxlbnwwfHwwfHw%3D&ixlib=rb-1.2.1&w=1000&q=80"
alt="Loading..."
/>
</div>
<div class="info">
<li class="Sname">CHIRAG BIPINBHAI CHAVDA</li>
<li class="er">190210116013</li>
</div>
<div class="spars">
<h1 class="spars">SPARS</h1>
</div>
<div class="logBtn" style="align-self: center">
<button id="logOut">LOGOUT</button>
</div>
</div>
<div class="bar">
<nav>
<ul>
<li> <div class="dropdown">
<button class="dropbtn">Dashboard</button>
<div class="drop-content">
<a href="profile.html" target="new">Profile</a>
<a href="activities.html" target="new">Activities</a>
<a href="nonCertified.html" target="new">Non Certified</a>
</div>
</div></li>
<li><div class="dropdown">
<button class="dropbtn">Upload</button>
<div class="drop-content">
<a href="upload.html" target="new">Techfest</a>
<a href="uploadC.html" target="new">Course</a>
<a href="uploadIntern.html" target="new">Intern/Other</a>
</div>
</div></li>
<li> <div class="dropdown">
<button class="dropbtn">Verify</button>
<div class="drop-content">
<a href="#">In-progress</a>
<a href="#">Verified</a>
</div>
</div></li>
<li><div class="dropdown">
<button class="dropbtn">Report</button>
<div class="drop-content">
<a href="#">Weekly</a>
<a href="#">Monthly</a>
<a href="#">Yearly </a>
</div>
</div></li>
<li><div class="dropdown">
<button class="dropbtn">Q&A</button>
<div class="drop-content">
<a href="#">FAQ</a>
<a href="#">New Query</a>
</div>
</div></li>
<li><div class="dropdown">
<button class="dropbtn">Contact</button>
<div class="drop-content">
<a href="#">Team</a>
</div>
</div></li>
</ul>
</div>
</header>
</body>
</html>