-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
111 lines (89 loc) · 2.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Startup Website</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Hero Section -->
<section class="hero">
<img src="/images/hero-image.jpg" alt="Startup Logistics Image">
<div class="hero-content">
<h1 class="heading">Welcome to Your Startup</h1>
<p class="paragraph">Revolutionizing the way you experience logistics, connecting customers and sellers
worldwide.</p>
</div>
</section>
<!-- Services Section -->
<section class="services">
<div class="container">
<h2 class="heading">Our Services</h2>
<div class="d-flex flex-row">
<!-- Service 1 -->
<div class="card">
<img src="/images/image1.png" alt="Service 1 Image">
<div class="card-content">
<h3 class="subheading">Global Shipping Solutions</h3>
<p class="paragraph">Reliable and efficient global shipping services for businesses, connecting
customers with sellers worldwide.</p>
</div>
</div>
<!-- Service 2 -->
<div class="card">
<img src="/images/image1.png" alt="Service 2 Image">
<div class="card-content">
<h3 class="subheading">Customs Clearance Assistance</h3>
<p class="paragraph">Professional assistance in navigating customs procedures to ensure smooth
and
timely clearance of shipments.</p>
</div>
</div>
</div>
<!-- Add more cards for other services -->
</div>
</section>
<!-- Form Section -->
<section class="form">
<div class="container">
<h2 class="heading">Request Information or Apply</h2>
<form>
<div class="form-group">
<label for="name">Your Name</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Your Email</label>
<input type="email" id="email" name="email" required>
</div>
<!-- Add more form fields as needed -->
<button type="submit" class="button button-primary">Submit</button>
</form>
</div>
</section>
<!-- FAQ Section -->
<section class="faq">
<div class="container">
<h2 class="heading">Frequently Asked Questions</h2>
<!-- <div class="card"> -->
<h3 class="subheading">Question 1?</h3>
<p class="paragraph">Answer to question 1 goes here.</p>
<!-- </div> -->
<!-- <div class="card"> -->
<h3 class="subheading">Question 2?</h3>
<p class="paragraph">Answer to question 2 goes here.</p>
<!-- </div> -->
<!-- Add more FAQ cards -->
</div>
</section>
<!-- Additional Sections -->
<section class="additional-section">
<div class="container">
<!-- Add content for additional sections as needed -->
</div>
</section>
<!-- Add more sections as needed -->
<script src="scripts.js"></script>
</body>
</html>