-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathstudent.html
130 lines (125 loc) · 5.17 KB
/
student.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
<!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>Student | Mathisi Classroom</title>
</head>
<style>
.learn-more:last-child {
margin-left: 0px;
}
</style>
<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="student-login.php">Log In</a></li>
<li><a href="student_sign_up.php" class="sign-up">Sign Up</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-1">Like everything else in life, study requires your passion and excitement.</h3>
<a href="student_sign_up.php" class="learn-more"><button>Create Student Account</button></a>
</div>
</div>
</div>
<div class='column'>
<div class='column-right'>
<img src="Mini-class App designs/Studying 1.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/Bookshelves 1.svg" class="image-left" alt="">
</div>
</div>
<div class='column'>
<div class='column-right-3'>
<div class="student-section">
<h3 class="education-1">Marks are good but aim to get the knowledge that comes with learning because knowledge is what you have left when you
leave the four walls of a class.</h3>
</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="education-1">If you desire first position, be ready to learn what people in first position do with what they have learnt.</h3>
</div>
</div>
</div>
<div class='column'>
<div class='column-right'>
<img src="Mini-class App designs/Graduation 1.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="" class="footer-text">Contact Us</a></li>
<li><a href="" class="footer-text">Privacy Policy</a></li>
<li><a href="" class="footer-text">Review</a></li>
</ul>
</div>
</div>
</div>
<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>
<script src="js/app.js"></script>
</body>
</html>