-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtutors.html
67 lines (63 loc) · 2.53 KB
/
tutors.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" sizes="180x180" href="Favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="Favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="Favicon/favicon-16x16.png">
<link rel="manifest" href="Favicon/site.webmanifest">
<title>RKG | Tutors</title>
<link rel="stylesheet" href="Style/style.css">
</head>
<body>
<header>
<div class="banner"></div>
</header>
<nav>
<a href="index.html">Home</a>
<a href="videos.html">Videos</a>
<a href="#">Tutors</a>
<a href="testyourself.html">Test Yourself</a>
<a href="contact.html">Contact Us</a>
<a href="login.html" class="flex-align-right">Login/SignUp</a>
</nav>
<main>
<section>
<h2><span>Our Tutors</span></h2>
<div class="container">
<div class="displaypic">
<img src="Pictures/Professor Messor.png" width="40%" alt="Professor Messor">
<span id="Messor">Professor Messor</span>
</div>
<div class="displaypic">
<img src="Pictures/Ankit Goyal.png" width="40%" alt="Ankit Goyal">
<span id="Ankit">Ankit Goyal</span>
</div>
<!-- <div class="displaypic">
<img src="Pictures/GOVIND.jpg" width="40%" alt="Govind Gupta">
<span id="Govind">Govind Gupta</span>
</div>
<div class="displaypic">
<img src="Pictures/Kashish.jfif" width="40%" alt="Kashish Agarwal">
<span id="Kashish">Kashish Agarwal</span>
</div>
<div class="displaypic">
<img src="Pictures/Rajarshi.png" width="40%" alt="Rajarshi Roy">
<span id="Rajarshi">Rajarshi Roy</span>
</div> -->
</div>
</section>
</main>
<footer>
<a href="#">FAQ</a>
<a href="contact.html">Contact Us</a>
<a href="#">Terms of Use</a>
<a href="#">Privacy Policy</a>
<a href="#">Refund Policy</a>
<a href="#" class="flex-align-left">© 2020 | RKG Learning System</a>
<span class="Team_Credit">Created in ♥ with Govind, Kashish and Rajarshi</span>
</footer>
</body>
</html>