-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (89 loc) · 2.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="styles.css" />
<title>Quicky Landing Page</title>
</head>
<body>
<div class="hero">
<div class="header">
<div class="left">
<div class="logo">
<img src="images/logo-no-background.png" alt="logo" class="logo">
</div>
</div>
<div class="right">
<ul class="links">
<li><a href="#">Feed</a></li>
<li><a href="#">About</a></li>
<li><a href="#">My Profile</a></li>
</ul>
</div>
</div>
<div class="one-body">
<div class="hero-left">
<h1>Welcome to Quicky !</h1>
<p>Quicky is a job board for creatives to find and share quick gigs for quick money</p>
<button class="sign-up">#</button>
</div>
<div class="heroright">
<img src="images/drawipad.jpg" class="ipad">
</div>
</div>
</div>
<div class="information-body">
<h2>Check out some listings ...</h2>
<div class="information-container">
<div class="card-container">
<div class="card">
<img src="images/musicproducer.jpg">
</div>
<p>Music Production</p>
</div>
<div class="card-container">
<div class="card">
<img src="images/photography.jpg">
</div>
<p>Photography</p>
</div>
<div class="card-container">
<div class="card">
<img src="images/webdevelopment.jpg">
</div>
<p>Web Development</p>
</div>
<div class="card-container">
<div class="card">
<img src="images/painting.jpg">
</div>
<p>Painting</p>
</div>
</div>
</div>
<div class="quote-section">
<div class="quote">
<p>"Used this tool as a Job seeker to search for jobs and get matching opportunities, the filters are intuitive and work well, interface is simple and easy to understand."</p>
<h3>- freelance artist</h3>
</div>
</div>
<div class="call-to-action">
<div class="container">
<p><b>Call to action! It's time!</b></p>
<p># for Quicky to both list and apply for quick gigs by clicking that button right over there!</p>
</div>
<button class="sign-up-button">#</button>
</div>
<!-- <div class="sign-up-section">
<div class="text">
<p><b>Call to action! It's time!</b></p>
<p class="small"># for our product by clicking that button right over there!</p>
</div>
<button class="sign-up">#</button>
</div> -->
<div class="footer">
<p>Copyright © <a href="https://github.com/marskimiko">Marisa Saunders</a> 2023</p>
</div>
</body>
</html>