-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
142 lines (93 loc) · 3.81 KB
/
index.html
File metadata and controls
142 lines (93 loc) · 3.81 KB
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ReadTime</title>
<link rel="stylesheet" type="text/css" href="./css/style home page.css">
<!font link>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;1,600&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Mate+SC&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400&display=swap" rel="stylesheet">
<!logo font------------------------------------------------------------>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600;700&display=swap" rel="stylesheet">
<!icon ----------------------------------------------------------------->
<script src="https://kit.fontawesome.com/7002da7c95.js" crossorigin="anonymous"></script>
</head>
<body>
<section class="header" id="navLinks" >
<div class="header-logo">
<h1>ReadTime</h1>
</div>
<div class="header-quote">
<h1> "Science can amuse and fascinate us all, <p>but it is enginnering that changes</p> the world " </h1></div>
<i class="fas fa-bars" onclick="showMenu()"></i>
</section>
<section class="main">
<div class="main-list" id="navLinks1" >
<i class="fas fa-times" onclick="hideMenu()"></i>
<ul>
<li><a href="https://drive.google.com/file/d/1lweYez4rx2-I7gOCDbiEJ7fR6wQRmFdt/view?usp=sharing">Syllabus</a></li>
<li><a href="./pages/Books.html">Books</a></li>
<li><a href="./pages/sample_papers.htm">MCQ's</a></li>
<li><a href="./pages/About_us.html">About us</a></li>
</ul>
</div>
<div class="info-1">
<h1> Video Lectures</h1>
<h3> Video lectures available for all first year Engineering subjects</h3>
<a href="./pages/video.html" class="btn" >Watch Now</a>
</div>
<div class="info-2">
<h1>Sample Papers</h1>
<h3> Sample paper pdf are availabe which are according to <p>the SPPU pattern</p></h3>
<a href="./pages/sample_papers.htm" class="btn-1">Explore</a>
</div>
<div class="info-3">
<h1>Books</h1>
<h3>Books pdf are available which are recommendes by SPPU</h3>
<a href="./pages/Books.html" class="btn-2">Explore</a>
</div>
<div class="info-4">
<h1>About Us</h1>
<h3>This is a E-learning website developed for First year Engineering students.From exam stress,no <p>availability of books any reference materials no teaching faculties</p> and many more due to Corona Pandemic situation.So our group has decided<p> to make a free E-LEARNING website for all the students who can’t get access </p>to any material,books or cant attend lectures due to various reasons.</h3>
</div>
<div class="topic-1">
<img>
</div>
<div class="topic-2">
<img>
</div>
<div class="topic-3">
<img>
</div>
<div class="topic-4">
<img >
</div>
</section>
<section class="footer">
<div class="footer-logo">
<h1>ReadTime</h1>
</div>
<div class="footer-icons">
<i class="fab fa-instagram"></i>
<i class="fab fa-facebook-f"></i>
<i class="fab fa-linkedin-in"></i>
<i class="fab fa-github"></i>
</div>
</section>
<script >
var navLinks = document.getElementById("navLinks1");
function showMenu(){
navLinks.style.right="0";
}
var navLinks1 = document.getElementById("navLinks1");
function hideMenu(){
navLinks1.style.right="-218px";
}
</script>
</body>
</html>