-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (86 loc) · 2.72 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
<!DOCTYPE html>
<html>
<head>
<title>ParkIT - Solving Parking Problems in New Zealand</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<script src="script.js" defer></script>
</head>
<body>
<header>
<nav>
<div class="container">
<h1 class="logo">ParkIT</h1>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#team">Our Team</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
</header>
<section id="home">
<div class="container">
<h2>Welcome to ParkIT</h2>
<p>Empowering New Zealand with smart parking solutions</p>
<a href="#contact" class="btn">Get in Touch</a>
</div>
</section>
<section id="about">
<div class="container">
<h2>About ParkIT</h2>
<p>ParkIT is a New Zealand-based startup on a mission to revolutionize parking solutions using AWS cloud, Linux, and DevOps.</p>
</div>
</section>
<section id="services">
<div class="container">
<h2>Our Services</h2>
<div class="service">
<h3>Smart Parking Systems</h3>
<p>Efficient parking management solutions leveraging advanced technologies.</p>
</div>
<div class="service">
<h3>Parking Data Analytics</h3>
<p>Unlocking valuable insights from parking data for better decision-making.</p>
</div>
<div class="service">
<h3>Mobile Parking App</h3>
<p>Seamless mobile app experience for convenient parking spot reservation and payment.</p>
</div>
</div>
</section>
<section id="team">
<div class="container">
<h2>Our Team</h2>
<div class="team-member">
<img src="sam.jpg" alt="Sam Agarwal">
<h3>Sam Agarwal</h3>
<p>Founder & CEO</p>
</div>
<div class="team-member">
<img src="engineer1.jpg" alt="Software Engineer">
<h3>Software Engineer 1</h3>
<p>Backend Development</p>
</div>
<div class="team-member">
<img src="engineer2.jpg" alt="Software Engineer">
<h3>Software Engineer 2</h3>
<p>Frontend Development</p>
</div>
<!-- Add more team members as needed -->
</div>
</section>
<section id="contact">
<div class="container">
<h2>Contact Us</h2>
<form>
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<textarea name="message" placeholder="Your Message" required></textarea>
<button type="submit">Send Message</button>
</form>
</div>
</section>
</body>
</html>