-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout_us.html
97 lines (69 loc) · 3.03 KB
/
About_us.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
<!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_about_us.css">
<!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">
<!font info-------------------------------------------------------->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;1,200&display=swap" rel="stylesheet">
<! icons ------------------------------------------------------------>
<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>
<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="./index.html">Home</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 </a></li>
</ul>
</section>
<section class="main-content">
<div class="info">
<h1>About Us</h1>
<h3>This website is a E-Learning Website designed for Educational purpose only.<p>The websites main purpose is to provide E-content for students in need.</p><p>Due to Corona pandemic many students faced problem for finding suitable <p> study material, so we a group from DKTE Institute came up with an idea for</p></p> creating a E-learing website and gathered a whole lot of E-content from<p> internet and made it available here in one Website.This is a<p></p> non-profitable website made to help students to get E-content.<p>The website consists of video lectures as per SPPU syllabus,Books,MCQ's,</p>PYQ's.If any Copyright issue Contact details have been provided below. </h3>
</div>
<div class="info-image"><img></div>
<div class="contact">
<h1>Contact Us</h1>
<ul>
<li><h3>pradeeppawar8577@gmail.com</h3></li>
</ul>
</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="-280px";
}
</script>
</body>
</html>