-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
119 lines (111 loc) · 4.44 KB
/
Copy pathindex.html
File metadata and controls
119 lines (111 loc) · 4.44 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vikash Road Carriers | Modern Transport & Logistics</title>
<meta
name="description"
content="Vikash Road Carriers offers modern road transport, moving, packing, and logistics solutions with trusted service."
/>
<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=Inter:wght@400;500;600;700;800&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header class="hero">
<nav class="navbar">
<a href="#home" class="brand">VIKASH ROAD CARRIERS</a>
<div class="nav-links">
<a href="#services">Services</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
</div>
</nav>
<div class="hero-content" id="home">
<div class="hero-text">
<p class="eyebrow">Reliable Freight • Smart Logistics • On-Time Delivery</p>
<h1>Modern transport solutions for every journey.</h1>
<p class="hero-copy">
From road freight to packing and moving support, we deliver dependable service with speed,
safety, and professionalism.
</p>
<div class="hero-actions">
<a href="#contact" class="btn btn-primary">Get a Quote</a>
<a href="#services" class="btn btn-secondary">Explore Services</a>
</div>
</div>
<div class="hero-card">
<h3>Trusted by local and regional businesses</h3>
<ul>
<li>Fast dispatch and secure transit</li>
<li>Flexible loads for all cargo sizes</li>
<li>Professional packing and moving support</li>
</ul>
</div>
</div>
</header>
<main>
<section class="section" id="services">
<div class="section-heading">
<p class="eyebrow">Core services</p>
<h2>Logistics support built for progress.</h2>
</div>
<div class="service-grid">
<article class="card">
<h3>Full Truck Load</h3>
<p>Efficient transport for large shipments with secure handling and timely delivery.</p>
</article>
<article class="card">
<h3>Part Load Service</h3>
<p>Cost-effective freight options for smaller cargo loads without compromising reliability.</p>
</article>
<article class="card">
<h3>Packers & Movers</h3>
<p>Professional packing, loading, and shifting support for homes, offices, and businesses.</p>
</article>
<article class="card">
<h3>Warehousing Support</h3>
<p>Dependable logistics coordination for storage, transfer, and distribution needs.</p>
</article>
</div>
</section>
<section class="section about-section" id="about">
<div class="about-content">
<div>
<p class="eyebrow">About us</p>
<h2>Moving goods with precision, care, and modern logistics.</h2>
<p>
VIKASH ROAD CARRIERS is a trusted transport partner focused on safe movement, efficient
coordination, and dependable service across key routes.
</p>
</div>
<div class="about-box">
<h3>Company Details</h3>
<p><strong>Name:</strong> VIKASH ROAD CARRIERS</p>
<p><strong>Address:</strong> Transport Nagar, Patna Gate No. 1, So</p>
<p><strong>CEO:</strong> Su</p>
</div>
</div>
</section>
<section class="section contact-section" id="contact">
<div class="contact-card">
<p class="eyebrow">Contact</p>
<h2>Ready to move your cargo with confidence?</h2>
<p>Get in touch for smart transport planning, shifting support, and dependable logistics service.</p>
<a href="mailto:info@vikashroadcarriers.com" class="btn btn-primary">Request a Consultation</a>
</div>
</section>
</main>
<footer>
<p>© <span id="year"></span> VIKASH ROAD CARRIERS. All rights reserved.</p>
</footer>
<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>