-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtutorProfile.html
executable file
·52 lines (45 loc) · 1.94 KB
/
tutorProfile.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
<!DOCTYPE html>
<html>
<body>
<main class="content">
<div class="profile">
<div class="profile-head-content">
<div class="profile-head-content-picture">
<img src="images/student.jpg" alt="Picture of student" id="profile-image">
</div>
<div class="profile-head-content-text">
<h4>Alfred Whimsworth</h4>
<p class="text-secondary mb-1">English Tutor</p>
<p class="text-muted font-size-sm">Woodinville, Washington</p>
<i class="fas fa-envelope-open-text"></i> <span class="email">AlfredWhimsworth@gmail.com</span>
</div>
</div>
<div class="profile-side-content">
</i><h4>Education: </h4><span class="education">Masters in mathematics from Cambridge University</span>
<hr></hr>
<h4>Work Experience: </h4><span class="experience">Professor at Harvard University 2005-2019. Wrote a Times best seller novel in 2008.</span>
<hr></hr>
<h4>Quality Rating: </h4><span class="rating">4.9/5 Stars</span>
<hr></hr>
<h4>Hourly Rate: </h4><span class="price">$500 per hour</span>
</div>
</div>
<div class="review-container">
<h2>Reviews:</h2>
<div class="review">
<i class="fas fa-user"></i><span class="review-name"> Alex Vogt</span>
<h4>Quality Rating: <span class="rating">4.9/5 Stars</span></h4>
<hr></hr>
<h4>Review:</h4>
<span class="review-text">Overall an excellent tutor. He single handedly improved my act english score by 6 points over a month. Extremely nice and understanding person who knows what he's doing. Hourly rate is a bit expensive but it is worth it.</span>
</div>
</div>
<div class="footer-container">
<div class="footer">
<h1>Footer</h1>
<a href="about.html">About Us</a>
</div>
</div>
</main>
</body>
</html>