-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (56 loc) · 3.07 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>
<title>Lawn Paynes</title>
<!-- The format detection will ensure Edge does not try to allow the telephone number to launch Skype or other phone programs -->
<meta name="format-detection" content="telephone=no">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#218021">
<!-- CSS stylesheets for the page -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/basestyles.css">
<link rel="stylesheet" href="css/indexstyle.css">
<!-- This is the reference to use the Fjalla One font for <h1> and <h3> tags that contain the name of the business -->
<link href="https://fonts.googleapis.com/css?family=Fjalla+One" rel="stylesheet">
</head>
<body>
<!-- Header with nav bar. -->
<header>
<div class="main-header">
<h1 class="name"><a href="index.html">Lawn Paynes</a></h1>
<ul class="main-nav">
<li><a href="index.html" class="home">Home</a></li>
<li><a href="services.html" class="leaf">Services</a></li>
<li><a href="our_work.html" class="shovel">Our Work</a></li>
<li><a href="contact.html" class="contactUs">Contact</a></li>
</ul>
</div>
</header>
<!-- This div is the target of spring.js to supply a message based on the date. -->
<div id="alert">
</div>
<div class="main-content">
<div class="intro-container">
<img src="img/front_lawn.JPG" alt="A recently mowed easement of a property that is well-trimmed">
<h2>Welcome to Lawn Paynes!</h2>
<p> Lawn Paynes is your complete source for all of your lawn care needs! We provide prompt courteous service that will make your lawn the envy of all of your neighbors.</p>
<p> We are a complete lawn care provider with all of services that you need! See a list of our services at our <a href="services.html">Services</a> Page! Take a look at how we can solve your lawn paynes <a href="our_work.html">here</a>!</p>
<p> If there's something that you don't see or you have questions, you can also chat with us at (502) 111-1111, or you can reach out to us through our handy <a href="contact.html">Contact Form</a>! </p>
<p> If you want your Lawn Paynes to go away, don't hesitate to let us know today!</p>
</div>
</div>
<!-- Footer -->
<footer class="footer">
<h3 class="foot-name">Lawn Paynes</h3>
<div class="foot-nav">
<a href="mailto:[email protected]">Email Us!</a>
<a id="telephone">(502) 111-1111</a>
<a href="index.html">Home</a> <br>
<p class="ryan">Site by <a href="mailto:[email protected]">Ryan Sallee</a></p>
<p class="disclaimer"> The resemblence of this site to any actual businesses is purely coincidental.</p>
</div>
</footer>
<!-- Script to target the #alert div with a message based on the date -->
<script src="js/spring.js"></script>
</body>
</html>