-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (49 loc) · 1.47 KB
/
index.html
File metadata and controls
65 lines (49 loc) · 1.47 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Chemal, Inc.</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="scroll-animate">
<div id="scroll-animate-main">
<div class="wrapper-parallax">
<header>
<h1>Chemal Inc.</h1>
<!-- <h2>Services</h2>
<h2>Contact us</h2>
--> <!-- Add in h2 for Services and Contact us directly below -->
</header>
<section class="content">
<h1>Services</h1>
<ul>
<li>Sawmill, lumber, and firewood</li>
<li>Demolition and lot clearing</li>
<li>Dozer, Bobcat, and backhoe services</li>
<li>Stump removal</li>
<li>Brush mowing</li>
</ul>
<div class="center">
<img src="images/bobcat2.jpg" alt="Bobcat">
<img src="images/sawmill1.jpg" alt="Sawmill">
</div>
</section>
<footer class="center">
<h1>Contact us</h1>
<form method="POST" action="http://formspree.io/mattred1@gmail.com">
<input type="text" name="Name" placeholder="Your name">
<input type="text" name="Phone" placeholder="Phone">
<input type="text" name="Email" placeholder="Email address">
<textarea rows="4" cols="20" placeholder="Your message"></textarea>
<br>
<button type="submit">Send</button>
</form>
</footer>
</div>
</div>
</div>
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>