-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·73 lines (64 loc) · 3.46 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
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Straight to the Point Archery</title>
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,900" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="styles/meyer-reset.css">
<link rel="stylesheet" type="text/css" href="styles/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="styles/stylesheet.css">
<link rel="stylesheet" type="text/css" href="styles/main-styles.css">
<link rel="stylesheet" type="text/css" href="styles/header-footer.css">
</head>
<body>
<article class="content-wrapper">
<header>
<!-- Logo and Nav will appear on the same "line", Header will appear below. The logo and nav bar use responsive grids -->
<a href="index.html"><img src="images/stplogo.jpg" alt="STP Archery Logo" id="logo" class="col span_2_of_7"></a> <!-- Make Logo Clickable and return to homepage -->
<!-- Main navigation -->
<nav class="mainNav">
<ul>
<li><a href="index.html" class="col span_1_of_7">Home</a></li>
<li><a href="about.html" class="col span_1_of_7">About</a></li>
<li><a href="services.html" class="col span_1_of_7">Services</a></li>
<li><a href="instructors.html" class="col span_1_of_7">Instructors</a></li>
<li><a href="blog.html" class="col span_1_of_7">Blog</a></li>
</ul>
</nav>
<!-- Main header on each page -->
<h1 id="mainHeader">Home</h1>
</header>
<section id="mainLeft">
<!--Headline, main article, archer image-->
<h2 id="mainHead"> Straight to the Point Archery
</h2>
<p class="mainText"> is a nonprofit archery education center
where archers of all ages and abilities can learn about an exciting, international Olympic sport.
</p>
<p class="mainText">Our instructors offer beginner-to-elite lessons in our state-of-the-art indoor educational and training facility in Tacoma.
</p>
<p class="mainText">Come see us for a group lesson, private class or your next party!
</p>
<ul class="mainList">
<li class="mainHours">
<a href="about.html" target="_blank">Hours and location</a> </li>
<li class="mainHours"> <a href="services.html" target="_blank">Class schedule</a> </li>
</ul>
<iframe width="350" height="215" src="https://www.youtube.com/embed/ahLNCzV56yk" frameborder="0" allowfullscreen></iframe>
</section>
<section id="mainRight">
<img src="images/stparchery_mockcover.jpg" alt="archer" id="archer">
<h6 id="mainInvisible">Archer image</h6>
</section>
<footer>
<!-- Social Media Links (images using font awesome) -->
<nav id="footerNav">
<a href="https://www.facebook.com/" target="_blank"><i class="fa fa-facebook-official fa-3x" aria-hidden="true"></i></a>
<a href="https://twitter.com/" target="_blank"><i class="fa fa-twitter-square fa-3x" aria-hidden="true"></i></a>
<a href="https://www.instagram.com" target="_blank"><i class="fa fa-instagram fa-3x" aria-hidden="true"></i></a>
</nav>
<!-- Email and Phone Number on click will automatically open a new email or start a phone call (assuming the client is a mobile device) respectively -->
<p>Straight to the Point Archery | 528 Nock Point Ln Tacoma, WA 98412 | <a href="mailto:archery-education@example.com">archery-education@example.com</a> | <a href="tel:(253)555-1010">(253) 555-1010</a></p>
</footer>
</article>
</body>