forked from danishzayan/StudentsShowcase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (42 loc) · 1.33 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
<!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="style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<title>👨🎓 Showcase</title>
</head>
<body>
<header>
<h1>👨🎓 Students</h1>
<nav>
<a href="https://github.com/danishzayan/OpenSourceProject">
<i class="fa fa-github fa-lg"></i> GitHub
</a>
<!-- <a href="https://www.linkedin.com/in/danishzayan">About</a> -->
<!-- <a href="http://">Team</a> -->
</nav>
<div class="wrap">
<div class="search">
<input type="text" class="searchTerm" placeholder="What are you looking for?">
<button type="submit" class="searchButton">
<i class="fa fa-search"></i>
</button>
</div>
</div>
</header>
<main>
<section id="card-container">
<a href="http://" target="_blank" rel="noopener noreferrer"></a>
</section>
</main>
<div id="scroll-to-top-button" onclick="scrollToTop()">
<i class="fa fa-chevron-up"></i>
</div>
<script type="module" src="script.js"></script>
</body>
</html>