-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
153 lines (150 loc) · 6.89 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="app.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Cabin:wght@400;600;700&display=swap"
rel="stylesheet"
/>
<title>Spense</title>
</head>
<body>
<div class="banner">
🎉 To celebrate Spense's launch, we will be waving all fees for the
entire month of April.
<span class="banner-underline"
>You will be receiving 100% of the earnings.</span
>
🎉
</div>
<nav class="nav">
<p class="logo">spense.</p>
<button class="hamburger">
<img src="assets/Hamburger Menu.svg" alt="" />
</button>
<div class="nav-hidden">
<ul class="links">
<li class="push-right"><a href="#">Business</a></li>
<li><a href="#">Pricing</a></li>
<li><a href="#">Features</a></li>
<li class="push-right"><a href="#">Login</a></li>
<li><button class="nav-btn">Get started</button></li>
</ul>
</div>
</nav>
<section class="intro">
<img class="intro-img" src="assets/Hero Image (Mobile).png" alt="main image" />
<div class="intro-text">
<h2 class="intro-title">
Share your unfiltered thoughts. Get paid.
</h2>
<p class="intro-p">
Spense is an open platform for individuals to share their
unfiltered thoughts. Discuss the topics you love, and get paid
for doing <em>just</em> that.
</p>
<ul class="intro-benefits">
<li class="benefits-li">
<img src="assets/Checkmark.svg" alt="checkmark" />
<p>Receive 99% off the earnings</p>
</li>
<li class="benefits-li">
<img src="assets/Checkmark.svg" alt="checkmark" />
<p>Get paid via Debit Card, ACH, or PayPal.</p>
</li>
<li class="benefits-li">
<img src="assets/Checkmark.svg" alt="checkmark" />
<p>Withdraw your earnings anytime.</p>
</li>
</ul>
<div class="sign-up">
<input type="text" placeholder="john@example.com"/>
<button class="intro-btn">Get Started</button>
</div>
</div>
</section>
<section class="details">
<div class="details-logos-container">
<img class="details-logos" src="assets/Facebook Logo.png" alt="Facebook Logo" />
<img class="details-logos" src="assets/Dribbble Logo.png" alt="Dribble Logo" />
<img class="details-logos" src="assets/Youtube Logo.png" alt="Youtube Logo" />
<img class="details-logos" src="assets/Pinterest Logo.png" alt="Pinterest Logo" />
<img class="details-logos" src="assets/Twitter Logo.png" alt="Twitter Logo" />
<img class="details-logos" src="assets/Reddit Logo.png" alt="Reddit Logo" />
<img class="details-logos" src="assets/Google Logo.png" alt="Google Logo" />
<img class="details-logos" src="assets/Slack Logo.png" alt="Slack Logo" />
</div>
<div class="details-escrow">
<div class="details-escrow__text">
<h2 class="details-title">
Secure your money with Escrow.
</h2>
<p class="details-text">
Spence uses Escrow to secure all payments. We believe
Escrow offers the highest level of security for your
payments, so you never need to worry about scams.
</p>
<a href="#" class="details-link">Learn more about Escrow →</a>
</div>
<img
src="assets/Phone Mockup (Mobile).png"
alt=""
class="details-escrow__img"
/>
</div>
<div class="details-editor">
<div class="details-editor__text">
<h2 class="details-title">
A text editor like no other.
</h2>
<p class="details-text">
Our text editor pulls you into focus mode with it's simplistic design and usability so you can put out your best writings.
</p>
<a href="#" class="details-link">Text Editor Live Demo →</a>
</div>
<img
src="assets/Text Editor.png"
alt="text editor"
class="details-editor__img"
/>
</div>
</div>
</section>
<footer class="footer">
<div class="footer-description">
<p class="logo logo-black">spense.</p>
<p class="footer-text">Spense is an open platform for individuals to share their unfiltered thoughts. Discuss the topics you love, and get paid for doing just that.</p>
</div>
<div class="footer-links-group test">
<li class="footer-links-section">
<ul><h3 class="footer-main">Company</h3></ul>
<ul><a href="#">About</a></ul>
<ul><a href="#">Customers</a></ul>
<ul><a href="#">Blog</a></ul>
</li>
<li class="footer-links-section">
<ul><h3 class="footer-main">Oppurtunities</h3></ul>
<ul><a href="#">Jobs</a></ul>
</li>
</div>
<div class="footer-links-group sitemap">
<li class="footer-links-section">
<ul><h3 class="footer-main">Sitemap</h3></ul>
<ul><a href="#">Homepage</a></ul>
</li>
<li class="footer-links-section">
<ul><h3 class="footer-main">Resources</h3></ul>
<ul><a href="#">Support</a></ul>
<ul><a href="#">Contact</a></ul>
<ul><a href="#">FAQ</a></ul>
</li>
</div>
</footer>
<script src="app.js"></script>
</body>
</html>