This repository has been archived by the owner on Mar 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
home.html
195 lines (182 loc) · 6.98 KB
/
home.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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<!DOCTYPE html>
<html>
<head>
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<title>Home</title>
<link rel="stylesheet" type="text/css" href="css/home.css" />
<link rel="stylesheet" type="text/css" href="css/navbar.css" />
<link rel="stylesheet" type="text/css" href="css/button.css" />
<link rel="stylesheet" type="text/css" href="css/button_green.css" />
<script type="module" src="js/navbar.js"></script>
</head>
<body>
<header>
<div class="navbar">
<div class="navbar-section" id="title-section">
<a id="title">
<img src="images/logo2.png" height="50px" /> Smart Student
Projects</a>
</div>
<div class="navbar-section" id="pages-section">
<a href="home.html">
<button class="button_nav" style="font-size: 13px" id="active">
<i class="fa-solid fa-house"></i>
Home
</button></a>
<a href="about.html">
<button class="button_nav" style="font-size: 13px">
<i class="fa-solid fa-address-card"></i>
About
</button></a>
<a href="ranking.html">
<button class="button_nav" style="font-size: 13px">
<i class="fa-solid fa-ranking-star"></i>
Ranking
</button></a>
<a href="projects.html">
<button class="button_nav" style="font-size: 13px">
<i class="fa-solid fa-lightbulb"></i>
Projects
</button></a>
</div>
<div class="navbar-section" id="login-profile-section">
<a href="project_submission.html" id="menu_submit_project">
<button class="button_green" style="
font-size: 13px;
margin-bottom: 10px;
margin-top: 10px;
margin-right: 10px;
">
Upload
<i class="fa-solid fa-plus"></i>
</button>
</a>
<a href="index.html" id="menu_loginregister">
<button class="button_nav" style="font-size: 13px">
<i class="fa-solid fa-right-to-bracket"></i>
Login/Register
</button></a>
<a href="user_profile.html">
<button class="button_nav" style="font-size: 13px" id="menu_profile">
<i class="fa-solid fa-user"></i>
Profile
</button></a>
<a href="#"><button class="button_nav" id="menu_logout" style="background: red">
<i class="fa-solid fa-right-from-bracket fa-lg" style="color: #fff"></i></button></a>
</div>
</div>
</header>
<div class="logo_info">
<center>
<h1>Smart Student Projects!</h1>
<p id="tagline">
Unlocking Student Innovation: Your Contribution, Everyone's Knowledge </p>
</center>
<img src="images/home_image_1.png" />
</div>
<div class="wrap">
<div class="search">
<input type="text" class="searchTerm" placeholder="Search for Projects..." />
<button type="submit" class="searchButton">
<i class="fa fa-search"></i>
</button>
</div>
</div>
<div class="card-container">
<div class="card" id="students_card">
<div class="header">
<img src="images/students.png" class="cover-image" alt="University Image" />
</div>
<div class="info">
<p class="title">Top Students</p>
<p>
<i class="fa-solid fa-medal" style="color: #ffd700"></i> Aryan Randeriya
</p>
<p>
<i class="fa-solid fa-medal" style="color: #c0c0c0"></i> Vivek Gokhale
</p>
<p>
<i class="fa-solid fa-medal" style="color: #b08d57"></i> Pulse Rajan
</p>
</div>
<div class="footer">
<center>
<a href="ranking.html" style="text-decoration: none;">
<button class="button" style="font-size: 13px; margin-bottom: 25px">
View More Students...
<svg class="icon" viewBox="0 0 24 24" fill="currentColor">
<path fill-rule="evenodd"
d="M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25zm4.28 10.28a.75.75 0 000-1.06l-3-3a.75.75 0 10-1.06 1.06l1.72 1.72H8.25a.75.75 0 000 1.5h5.69l-1.72 1.72a.75.75 0 101.06 1.06l3-3z"
clip-rule="evenodd"></path>
</svg>
</button>
</a>
</center>
</div>
</div>
<div class="card" id="university_card">
<div class="header">
<img src="images/university.png" class="cover-image" alt="University Image" />
</div>
<div class="info">
<p class="title">Top Universities</p>
<p>
<i class="fa-solid fa-medal" style="color: #ffd700"></i> PDEU
</p>
<p>
<i class="fa-solid fa-medal" style="color: #c0c0c0"></i> MIT
</p>
<p>
<i class="fa-solid fa-medal" style="color: #b08d57"></i> Harvard
</p>
</div>
<div class="footer">
<center>
<a href="ranking.html" style="text-decoration: none;">
<button class="button" style="font-size: 13px; margin-bottom: 25px">
View More Universities...
<svg class="icon" viewBox="0 0 24 24" fill="currentColor">
<path fill-rule="evenodd"
d="M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25zm4.28 10.28a.75.75 0 000-1.06l-3-3a.75.75 0 10-1.06 1.06l1.72 1.72H8.25a.75.75 0 000 1.5h5.69l-1.72 1.72a.75.75 0 101.06 1.06l3-3z"
clip-rule="evenodd"></path>
</svg>
</button>
</a>
</center>
</div>
</div>
<div class="card" id="projects_card">
<div class="header">
<img src="images/projects.png" class="cover-image" alt="University Image" />
</div>
<div class="info">
<p class="title">Top Innovative Projects</p>
<p>
<i class="fa-solid fa-medal" style="color: #ffd700"></i> WebWonders
</p>
<p>
<i class="fa-solid fa-medal" style="color: #c0c0c0"></i> ProductivityPal
</p>
<p>
<i class="fa-solid fa-medal" style="color: #b08d57"></i> StockSense
</p>
</div>
<div class="footer">
<center>
<a href="ranking.html" style="text-decoration: none;">
<button class="button" style="font-size: 13px; margin-bottom: 25px">
View More Projects...
<svg class="icon" viewBox="0 0 24 24" fill="currentColor">
<path fill-rule="evenodd"
d="M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25zm4.28 10.28a.75.75 0 000-1.06l-3-3a.75.75 0 10-1.06 1.06l1.72 1.72H8.25a.75.75 0 000 1.5h5.69l-1.72 1.72a.75.75 0 101.06 1.06l3-3z"
clip-rule="evenodd"></path>
</svg>
</button>
</a>
</center>
</div>
</div>
</div>
</body>
<script src="https://kit.fontawesome.com/3d65243769.js" crossorigin="anonymous"></script>
</html>