-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
170 lines (153 loc) · 4.28 KB
/
index.php
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GOWORK - Freelance Platform</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<!-- Custom CSS -->
<style>
body {
margin: 0;
padding: 0;
}
.navbar {
background-color: #000;
margin-top: 10px;
}
.hero {
height: 80vh;
display: flex;
align-items: center;
}
.hero-content {
color: #000;
}
.hero-image {
display: flex;
justify-content: flex-end;
align-items: center;
}
.hero-image img {
max-width: 100%;
height: auto;
}
.how-it-works {
text-align: center;
}
.how-it-works h2 {
margin-bottom: 30px;
}
.footer {
background-color: #000;
color: #fff;
padding: 20px 0;
}
.footer p {
margin-bottom: 0;
}
.footer-nav {
list-style-type: none;
padding: 0;
display: flex;
justify-content: flex-end;
}
.footer-nav li {
margin-left: 10px;
}
.footer-nav li:first-child {
margin-left: 0;
}
.footer-nav a {
color: #fff;
text-decoration: none;
}
</style>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="#">GOWORK</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Browse Jobs</a>
</li>
<li class="nav-item">
<a class="nav-link" href="register.php">Sign Up</a>
</li>
<li class="nav-item">
<a class="nav-link" href="login.php">Log In</a>
</li>
</ul>
</div>
</nav>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<div class="row">
<div class="col-md-6 hero-content">
<h1>Welcome to GOWORK</h1>
<p>Find the best freelancers or freelance projects to work on.</p>
<a href="register.php" class="btn btn-primary">Get Started</a>
</div>
<div class="col-md-6 hero-image">
<img src="freelance.png" alt="Freelance Photo">
</div>
</div>
</div>
</section>
<!-- How It Works Section -->
<section class="how-it-works">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2 class="text-center">How It Works</h2>
</div>
</div>
<div class="row">
<div class="col-md-4">
<h4>Search</h4>
<p>Browse and search for freelancers or projects based on your requirements.</p>
</div>
<div class="col-md-4">
<h4>Hire</h4>
<p>Hire the most suitable freelancer for your project or get hired for freelance work.</p>
</div>
<div class="col-md-4">
<h4>Collaborate</h4>
<p>Collaborate and communicate with freelancers or clients to successfully complete projects.</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer mt-auto">
<div class="container">
<div class="row">
<div class="col-md-6">
<p>© 2023 GOWORK. All rights reserved.</p>
</div>
<div class="col-md-6">
<ul class="footer-nav">
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Terms of Service</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</div>
</div>
</footer>
<!-- JavaScript -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.4/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
</body>
</html>