
Web Design
Custom web design for small businesses, we help you capture new audiences and increase your sales.

Graphic Design
Logos, merchandise and more. Anyone can create nice graphics. We think it’s better to create memorable ones.

Content Creation
Want to attract people to your website? You have to have the best content in the world. That’s what we do.
About us
I made it so it is super easy to update and so that it flows perfectly with my tutorials. Lots of love and hundreds of hours went into making it. I hope you love it as much as I do.
I wish you the best of luck with your business, enjoy the adventure.

Talk to us
Have any questions? We are always open to talk about your business, new projects, creative opportunities and how we can help you.
<!DOCTYPE html>
<html lang=“en”>
<head>
<meta charset=“UTF-8” />
<meta name=“viewport” content=“width=device-width, initial-scale=1.0” />
<title>Vehicle Registration Table</title>
</head>
<body>
<h2 class=“vehicle-registration-table-title”>
Check Vehicle Registration Details in Your State
</h2>
<div class=“vehicle-registration-table”>
<a href=“#” class=“vehicle-registration-table-item”>
Check Vehicle Registration Details in Panjab
</a>
<a href=“#” class=“vehicle-registration-table-item”>
Check Vehicle Registration Details in Puducherry
</a>
<a href=“#” class=“vehicle-registration-table-item”>
Check Vehicle Registration Details in Odisha
</a>
<a href=“#” class=“vehicle-registration-table-item”>
Check Vehicle Registration Details in Nagaland
</a>
<a href=“#” class=“vehicle-registration-table-item”>
Check Vehicle Registration Details in Mizoram
</a>
<a href=“#” class=“vehicle-registration-table-item”>
Check Vehicle Registration Details in Meghalaya
</a>
</div>
<style>
.vehicle-registration-table {
display: grid;
grid-template-columns: auto auto auto;
gap: 24px;
justify-content: center;
align-items: center;
}
.vehicle-registration-table-item {
/* make it a button with hover effect */
text-align: center;
text-decoration: none;
display: block;
max-width: 200px;
background-color: #f0f6ff;
color: #456dff;
border: none;
font-size: 16px;
font-weight: bold;
padding: 10px;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.vehicle-registration-table-item:hover {
background-color: #ced8fd;
color: #456dff;
box-shadow: 0 0 4px #456dff;
transform: scale(1.05);
}
.vehicle-registration-table-title {
text-align: center;
font-size: 24px;
font-weight: bold;
color: #333;
margin-bottom: 20px;
background-color: #456dff;
color: #fff;
padding: 10px;
border-radius: 5px;
}
/* for mobile devices */
@media (max-width: 768px) {
.vehicle-registration-table-title {
font-size: 16px;
}
.vehicle-registration-table {
grid-template-columns: auto auto;
gap: 12px;
}
.vehicle-registration-table-item {
font-size: 12px;
}
}
</style>
</body>
</html>