-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (76 loc) · 3.39 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
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html>
<head>
<title>Tipsease</title>
<link rel="stortcut icon" href="./favicon.ico">
<link rel="stylesheet" type="text/css" href="./CSS/index.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.0.2/TweenMax.min.js"></script>
</head>
<body>
<!-- Might not need a nav -->
<!-- <header> -->
<!-- <nav> -->
<!-- <a href="#">Lorem</a> -->
<!-- <a href="#">Lorem</a> -->
<!-- <a href="#">Lorem</a> -->
<!-- <a href="#">Lorem</a> -->
<!-- <a href="#">Lorem</a> -->
<!-- </nav> -->
<!-- </header> -->
<section class="banner">
<h1>TipEase</h1>
<p>Skip the Tip jars and reward great service directly!</p>
<a href="#">Sign Up</a>
</section>
<div class="container">
<section class="top-content">
<p>Introducing the ultimate mobile app for rewarding people for positive interactions</p>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Nemo adipisci unde sint ullam dolores eaque. Voluptate, natus.</p>
<img src="/assets/top_content_img.jpg" alt="A glass tip jar" class="top-content-img">
</section>
<section class="middle-content">
<div class="step">
<img src="/assets/tipsease_step1.jpg" alt="Screenshot of tipsease signup form">
<h2>Lorem, ipsum.</h2>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. A, obcaecati laboriosam. At recusandae odio molestiae tempore inventore cupiditate tenetur expedita.</p>
</div>
<div class="step">
<img src="/assets/tipsease_step2.jpg" alt="Screenshot of tipsease signup form">
<h2>Lorem, ipsum.</h2>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. A, obcaecati laboriosam. At recusandae odio molestiae tempore inventore cupiditate tenetur expedita.</p>
</div>
<div class="step">
<img src="/assets/tipsease_step3.jpg" alt="Screenshot of tipsease signup form">
<h2>Lorem, ipsum.</h2>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. A, obcaecati laboriosam. At recusandae odio molestiae tempore inventore cupiditate tenetur expedita.</p>
</div>
<div class="step">
<img src="/assets/tipsease_step4.jpg" alt="Screenshot of tipsease signup form">
<h2>Lorem, ipsum.</h2>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. A, obcaecati laboriosam. At recusandae odio molestiae tempore inventore cupiditate tenetur expedita.</p>
</div>
</section>
<section class="bottom-content">
<div class="testimonial">
<img src="/assets/testimonial_1.jpg" alt="Happy tip receiver">
<h2>Lorem, ipsum dolor.</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quos harum assumenda saepe cupiditate dolorum autem!</p>
</div>
<div class="testimonial">
<img src="/assets/testimonial_2.jpg" alt="Happy tip receiver">
<h2>Lorem, ipsum dolor.</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quos harum assumenda saepe cupiditate dolorum autem!</p>
</div>
</section>
</div>
<footer>
<div class="icon-links">
<a href="#"></a>
<a href="#"></a>
<a href="#"></a>
<a href="#"></a>
<a href="#"></a>
</div>
</footer>
</body>
</html>