-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
136 lines (130 loc) · 5.61 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
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
<!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="https://use.fontawesome.com/releases/v5.5.0/css/all.css"
integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="shortcut icon" href="Mini-class App designs/mathisi logo new.png" type="image/x-icon">
<link rel="stylesheet" href="css/homePage.css">
<title>Welcome To Mathisi Classroom</title>
<style>
</style>
</head>
<body>
<div class="toggle">
<input type="checkbox" id="toggle" />
<label for="toggle"></label>
</div>
<header>
<div class="nav-logo">
<a href="index.html"><img src="Mini-class App designs/mathisi logo new.svg" class="logo" alt="Logo"></a>
<a href="faq.html" class="support-btn">Support</a>
</div>
<div class="Navbar__Link Navbar__Link-toggle">
<img src="Mini-class App designs/bars-solid.svg" width="25%" alt="">
</div>
<nav class="nav">
<ul class="nav__links">
<li><a href="about.html">About</a></li>
<li><a href="teachers.html" class="sign-up">Teachers</a></li>
<li><a href="student.html">Students</a></li>
<li><a href="contact_us.php" class="sign-up">Contact</a></li>
</ul>
</nav>
</header>
<!-- page content -->
<div class="container">
<div class='row'>
<div class='column'>
<div class='column-left'>
<div class="get-started">
<h3 class="education">Education is the best legacy</h3>
<p class="classroom">Manage classroom. Engage students. Easy to <br> learn.</p>
<p class="start">Get Started as a...</p>
<a href="teachers.html" class="learn-more"><button>Teacher</button></a>
<a href="student.html" class="learn-more"><button>Student</button></a>
</div>
</div>
</div>
<div class='column'>
<div class='column-right'>
<img src="Mini-class App designs/Team Spirit.svg" class="image-right" alt="">
</div>
</div>
</div>
</div>
<div class="container">
<div class='row-3'>
<div class='column'>
<div class='column-left'>
<img src="Mini-class App designs/undraw_exams_g4ow (2).svg" class="image-left" alt="">
</div>
</div>
<div class='column'>
<div class='column-right-3'>
<div class="student-section">
<h3 class="std-plat">A learning platform for students</h3>
<p class="access">Gain access to class materials and receive <br> announcements.</p>
<a href="student.html" class="show-more">Show More...</a>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class='row'>
<div class='column'>
<div class='column-left-2'>
<div class="teacher-section">
<h3 class="teacher">A teaching platform for teachers</h3>
<p class="send">Send class materials, send announcements to students and make learning accessible.</p>
<a href="teachers.html" class="show-more">Show More...</a>
</div>
</div>
</div>
<div class='column'>
<div class='column-right'>
<img src="Mini-class App designs/undraw_teaching_f1cm.svg" class="image-right" alt="">
</div>
</div>
</div>
</div>
<!-- footer section -->
<div class="container-fluid">
<div class="footer">
<div class="footer-image">
<a href="index.html"><img src="Mini-class App designs/mathisi logo while.svg" alt=""></a>
</div>
<div class="social-icons">
<a href="" class="footer-icons"><i class="fab fa-twitter" style="width: 20px; height: 17px;"></i></a>
<a href="" class="footer-icons"><i class="fab fa-google-plus-g"></i></a>
<a href="" class="footer-icons"><i class="fab fa-instagram" style="width: 20px; height: 17px;"></i></a>
<a href="" class="footer-icons"><i class="fab fa-facebook" style="width: 20px; height: 17px;"></i></a>
</div>
<div class="footer-information">
<ul class="nav-link">
<li><a href="index.html" class="footer-text">Home</a></li>
<li><a href="contact_us.php" class="footer-text">Contact Us</a></li>
<li><a href="faq.html" class="footer-text">FAQ</a></li>
<li><a href="review.php" class="footer-text">Reviews</a></li>
</ul>
</div>
</div>
</div>
<script src="js/app.js"></script>
<script>
const toggle = document.getElementById('toggle');
const body = document.body;
toggle.addEventListener('input', e => {
const isChecked = e.target.checked;
if (isChecked) {
body.classList.add('dark-theme');
} else {
body.classList.remove('dark-theme');
}
});
</script>
</body>
</html>