-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (61 loc) · 2.57 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--set website title, connect css stylesheet, javascript, and set favicon for website-->
<title>GuitarFun</title>
<link rel="stylesheet" href="styles.css">
<script src="scripts.js"></script>
<link rel="icon" type="image/x-icon" href="guitarfun-ico.ico">
</head>
<body>
<!--creates navbar with logo, different links in navbar go to different parts of webpage-->
<header>
<div class="logo">
<img src="guitarfun-logo.png" alt="GuitarFun Logo">
</div>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#courses">Courses</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section id="home" class="intro">
<h2>Welcome to GuitarFun</h2>
<p>Where learning Guitar is always <i>fun!</i></p>
<button onclick="scrollToSection('courses')">Explore Courses</button>
</section>
<!--different course options-->
<section id="courses">
<h2 class="section-title">Our Courses</h2>
<div class="courses">
<div class="course">
<h3>Beginner's Guitar - $10</h3>
<p>Just starting out? Simon will help you get started on your guitar journey! You will be playing songs by the end of the course.</p>
</div>
<div class="course">
<h3>Intermediate Guitar - $100</h3>
<p>Simon will walk you through more advanced things such as fingerpicking and advanced music theory.</p>
</div>
<div class="course">
<h3>Advanced Guitar - $250</h3>
<p>Become a world class guitarist with expert guidance and personalized feedback from Simon Gileff!</p>
</div>
</div>
</section>
<!--about and contact sections-->
<section id="about" class="about">
<h2>About the Teacher</h2>
<p>Simon Gileff has over a decade of experience playing the guitar, he also has an imaginary music education degree from the University of British Columbia!</p>
</section>
<section id="contact" class="contact">
<h2>Contact Us</h2>
<p>If you have any questions or need further information, feel free to reach out to us!</p>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
</section>
</body>
</html>