Skip to content

Commit c54cfc7

Browse files
authored
Added AirTutor
1 parent 1ee6555 commit c54cfc7

File tree

16 files changed

+649
-0
lines changed

16 files changed

+649
-0
lines changed

Temp/AirTutor/about.html

Lines changed: 106 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
8+
<link rel="preconnect" href="https://fonts.googleapis.com">
9+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
10+
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet">
11+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
12+
<style>
13+
.hiddenA {
14+
color:white;
15+
transition: 0.3s color;
16+
background-color: gray;
17+
}
18+
19+
.hiddenA.active {
20+
background-color: darkgray !important;
21+
}
22+
23+
.hiddenA:hover {
24+
color:darkgray;
25+
}
26+
* {
27+
font-family: montserrat,sans-serif;
28+
}
29+
</style>
30+
<title>Find your Tutor</title>
31+
</head>
32+
33+
<body>
34+
<nav>
35+
<ul class="nav nav-pills nav-fill" style="color:#000;background-color:rgb(3, 50, 73);height:100px;">
36+
<img src="img/logo.png" height=100px>
37+
<li class="nav-item">
38+
<a class="nav-link hiddenA" href="index.html">Home</a>
39+
</li>
40+
<li class="nav-item">
41+
<a class="nav-link active hiddenA" href="about.html">About</a>
42+
</li>
43+
<li class="nav-item">
44+
<a class="nav-link hiddenA" href="find.html">Services</a>
45+
</li>
46+
<li class="nav-item">
47+
<a class="nav-link hiddenA" href="contact.html">Contact</a>
48+
</li>
49+
</ul>
50+
</nav>
51+
<div class="text-center container">
52+
<br/>
53+
<h1>ABOUT US</h1>
54+
<br/>
55+
<p style="letter-spacing:0.01em;font-size:20px;">Hi there! Here at Air Tutor we believe in making your tutoring experience the most pleasurable it can be, this including from the moment you begin looking to the moment you are completely satisfied.
56+
57+
As a student, my parents always struggled to find tutors that were, available, affordable, trustworthy and qualified.
58+
<br/>
59+
So, with these struggles we have decided to make a website where you have access to all of these things (and more) in the comfort of your own home.
60+
<br/>
61+
Not only are you able to find a tutor at home, but you are also able to do it with minimal effort!
62+
63+
All you have to do, as the guardian or student yourself, is choose preferable characteristics for your tutor (such as their performance level or gender) and then choose which tutor you feel best fits.
64+
65+
To keep up to date with everything Air Tutor, feel free to contact the creators individually by going on to our 'contact us' page :)</p>
66+
<br/><br/><br/>
67+
<p>This company is created by our wonderful team filled with four Carmel year 9 students</p>
68+
<br/>
69+
<div class="row">
70+
<div class="col">
71+
Erin Havis
72+
</div>
73+
<div class="col">
74+
Maddie Harrison
75+
</div>
76+
<div class="col">
77+
Michael Yamen
78+
</div>
79+
<div class="col">
80+
Noa Bernstein
81+
</div>
82+
</div>
83+
<br/>
84+
<div class="row">
85+
<div class="col">
86+
<img src="img/about/Erin.webp" style="width:100%;">
87+
</div>
88+
<div class="col img">
89+
<img src="img/about/Maddie.webp" style="width:100%;">
90+
</div>
91+
<div class="col">
92+
<img src="img/about/Michael.webp" style="width:100%;">
93+
</div>
94+
<div class="col">
95+
<img src="img/about/Noa.webp" style="width:100%;">
96+
</div>
97+
</div>
98+
</div>
99+
<footer class="text-center text-lg-start bg-light text-muted">
100+
<div class="text-center p-4" style="background-color: rgba(0, 0, 0, 0.05);">
101+
© 2021 Copyright:
102+
<a class="text-reset fw-bold" href="https://doctormod.sytes.net/">David Golding</a>
103+
</div>
104+
</footer>
105+
</body>
106+
</html>

Temp/AirTutor/contact.html

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
8+
<link rel="preconnect" href="https://fonts.googleapis.com">
9+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
10+
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet">
11+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
12+
<style>
13+
14+
.hiddenA {
15+
color:white;
16+
transition: 0.3s color;
17+
background-color: gray;
18+
}
19+
20+
.hiddenA.active {
21+
background-color: darkgray !important;
22+
}
23+
24+
.hiddenA:hover {
25+
color:darkgray;
26+
}
27+
* {
28+
font-family: montserrat,sans-serif;
29+
}
30+
.mainPart {
31+
height:90vh;
32+
}
33+
</style>
34+
<title>Find your Tutor</title>
35+
</head>
36+
37+
<body>
38+
<nav>
39+
<ul class="nav nav-pills nav-fill" style="color:#000;background-color:rgb(3, 50, 73);height:100px;">
40+
<img src="img/logo.png" height=100px>
41+
<li class="nav-item">
42+
<a class="nav-link active hiddenA" href="index.html">Home</a>
43+
</li>
44+
<li class="nav-item">
45+
<a class="nav-link hiddenA" href="about.html">About</a>
46+
</li>
47+
<li class="nav-item">
48+
<a class="nav-link hiddenA" href="find.html">Services</a>
49+
</li>
50+
<li class="nav-item">
51+
<a class="nav-link hiddenA" href="contact.html">Contact</a>
52+
</li>
53+
</ul>
54+
</nav>
55+
<div class="text-center container mainPart">
56+
<br/>
57+
<br/>
58+
<h1>CONTACT</h1>
59+
<div class="">
60+
<h2>Would love to hear from you :)</h2>
61+
<br/>
62+
<p>Phone: <a href="tel:+61403422890">0403 422 890</a>
63+
<br/>
64+
Email: <a href="mailto:airtutor@outlook.com">airtutor@outlook.com</a>
65+
</p>
66+
67+
</div>
68+
</div>
69+
<footer class="text-center text-lg-start bg-light text-muted">
70+
<div class="text-center p-4" style="background-color: rgba(0, 0, 0, 0.05);">
71+
© 2021 Copyright:
72+
<a class="text-reset fw-bold" href="https://doctormod.sytes.net/">David Golding</a>
73+
</div>
74+
</footer>
75+
</body>
76+
</html>

0 commit comments

Comments
 (0)