-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (64 loc) · 2.25 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>InterviewPrep</title>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header>
<!-- navBar-->
<div class="navbar">
<a href="#home">Home</a>
<a href="#topics">DSA</a>
<!--quiz dropdown-->
<div class="dropdown">
<button class="dropbtn">Quiz
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="Quizzes/OOPSquiz/index.html" target="_blank">OOPS</a>
<a href="Quizzes/DBMSquiz/index.html" target="_blank">DBMS</a>
</div>
</div>
<!--dropdown ends-->
<a href="Planner/index.html" target="_blank">Planner</a>
<a href="pomodoro/index.html" target="_blank">Pomodoro</a>
</div>
<!--slideshow of various features-->
<div class="slideshow">
<img class="mySlides" src="images/1.jpeg">
<img class="mySlides" src="images/3.jpeg">
<img class="mySlides" src="images/2.jpeg">
<img class="mySlides" src="images/4.jpeg">
</div>
</header>
<main>
<!-- title of project-->
<div class="titleProject">
<h2>InterviewPrep</h2>
</div>
<!--Topics list-->
<div class="Topics" id="topics">
<div class="cards" id="easy">
<a href="DSATopics/EasyCateg/index.html"><h3>Easy</h3></a>
</div>
<div class="cards" id="medium">
<a href="DSATopics/MediumCateg/index.html"><h3>Medium</h3></a>
</div>
<div class="cards" id="hard">
<a href="DSATopics/HardCateg/index.html"><h3>Hard</h3></a>
</div>
</div>
</main>
<footer>
<!-- general information name ids and all-->
<div class="">
</div>
</footer>
<script src="script.js" type="text/javascript"></script>
</body>
</html>