-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
87 lines (83 loc) · 2.77 KB
/
home.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
<!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" />
<title>San Diego Chinese Teacher</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div class="container">
<nav class="navbar">
<ul class="landing-nav-links">
<li><a href="#about">About Me</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<section id="home">
<div class="frost-container">
<div class="frosted-glass-bg">
<h1>Hello and Welcome!</h1>
<p>
You've come to the right place to learn Chinese. Click about or
scroll down to see more details.
</p>
<img class="profile-pic" src="placeHolderPhoto.jpg" />
</div>
</div>
</section>
<section id="about">
<div class="frost-container2">
<div class="frosted-glass-bg2">
<h1>About Me</h1>
<p>Chinese teacher with 10 years of experience.</p>
<p>
Teaching experience from North County Chinese School, San Diego
Chinese Academy, and San Dieguito Union Adult Education.
</p>
<br />
<img class="logo" src="sdccaLogo.png" />
<img class="logo" src="sdcaLogo.png" />
<img class="logo" src="sduhsdLogo.jpg" />
<br />
<p>
Born and raised in China before moving to the United States. Other
hobbies include hiking, exercise, and cooking with my family
</p>
</div>
</div>
</section>
<section id="services">
<div class="frost-container3">
<div class="frosted-glass-bg3">
<h1>Services</h1>
<h3>I can help you with</h3>
<ul>
<li>Child Tutoring</li>
<li>Adult Tutoring</li>
<li>Preparing for Exam or Project</li>
<li>Preparing for travel to China</li>
<li>Chinese Education in general!</li>
</ul>
</div>
</div>
</section>
<section id="contact">
<div class="frost-container4">
<div class="frosted-glass-bg4">
<h1>Contact</h1>
<ul>
<li>Email: [email protected]</li>
<li>Phone: 858-342-3908 (text/call, please leave a message)</li>
</ul>
</div>
</div>
</section>
</div>
<div class="foot-container">
<footer class="footer">© 2021 Nancy Shi</footer>
</div>
</body>
</html>