0% found this document useful (0 votes)
6 views2 pages

HTML Template for Company Registration

This document provides a basic HTML template for a company registration firm featuring a faint navy blue background and a background image. It includes styles for the body, a container for content, and a fixed WhatsApp button for contact. The template is structured to present company registration services and encourages users to reach out for more information.

Uploaded by

princethiamidol
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views2 pages

HTML Template for Company Registration

This document provides a basic HTML template for a company registration firm featuring a faint navy blue background and a background image. It includes styles for the body, a container for content, and a fixed WhatsApp button for contact. The template is structured to present company registration services and encourages users to reach out for more information.

Uploaded by

princethiamidol
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

Here's a basic HTML template for a company registration firm with a faint navy blue

background color and a background image:

```
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Company Registration Firm</title>
<style>
body {
font-family: Arial, sans-serif;
background-image: linear-gradient(rgba(44, 62, 80, 0.5), rgba(44, 62,
80, 0.5)), url('[Link]');
background-size: cover;
background-position: center;
height: 100vh;
margin: 0;
padding: 0;
}

.container {
width: 80%;
margin: 40px auto;
padding: 20px;
background-color: #f9f9f9;
border: 1px solid #ddd;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.whatsapp-button {
position: fixed;
bottom: 20px;
right: 20px;
background-color: #25D366;
color: #fff;
padding: 10px 20px;
border-radius: 10px;
text-decoration: none;
}

.whatsapp-button:hover {
background-color: #1DA335;
}
</style>
</head>
<body>
<div class="container">
<h1>Company Registration Firm</h1>
<p>We specialize in company registration services. Our team of experts will
guide you through the entire process.</p>
<p>Contact us today to learn more about our services.</p>
</div>
<a href="[Link] class="whatsapp-button">Chat with
us on WhatsApp</a>
</body>
</html>
```

Replace:

- `[Link]` with

You might also like