Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 3

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Virtual Assistant Services</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.header {
background: #004aad;
color: white;
padding: 15px 0;
text-align: center;
}
.header img {
height: 50px;
}
.nav {
display: flex;
justify-content: center;
background: #00348d;
padding: 10px 0;
}
.nav a {
color: white;
margin: 0 15px;
text-decoration: none;
}
.banner {
background: url('banner.jpg') no-repeat center center/cover;
color: white;
text-align: center;
padding: 100px 0;
}
.services, .about, .contact {
padding: 50px 20px;
}
.contact form {
display: flex;
flex-direction: column;
width: 300px;
margin: 0 auto;
}
.contact form input, .contact form textarea {
margin: 10px 0;
padding: 10px;
}
.footer {
background: #00348d;
color: white;
text-align: center;
padding: 10px 0;
}
</style>
</head>
<body>

<div class="header">
<img src="logo.png" alt="AMSV Logo">
<h1>Virtual Assistant Services</h1>
</div>

<div class="nav">
<a href="#home">Home</a>
<a href="#services">Services</a>
<a href="#about">About Us</a>
<a href="#contact">Contact</a>
</div>

<div class="banner">
<h2>Professional Virtual Assistant Services</h2>
</div>

<div class="services" id="services">


<h2>Our Services</h2>
<ul>
<li>Any Type Data Entry (SPSS, Excel)</li>
<li>Data Analysis</li>
<li>Data Processing</li>
<li>Data Scraping</li>
<li>Web Research</li>
<li>Research Article Writing</li>
<li>Manual Typing</li>
<li>Data Conversion</li>
<li>Microsoft Office Work (Word, Excel, PowerPoint, Access)</li>
</ul>
</div>

<div class="about" id="about">


<h2>Why Choose Us?</h2>
<ul>
<li>100% accurate</li>
<li>Fast and quick services</li>
<li>Confidential</li>
<li>Well Experienced</li>
<li>Quality Work</li>
</ul>
</div>

<div class="contact" id="contact">


<h2>Contact Us</h2>
<p>Phone: +923402440985</p>
<p>Location: SKZMDC, Lahore</p>
<p>Email: as.visualassistant@gmail.com</p>
<form action="submit_form.php" method="post">
<input type="text" name="name" placeholder="Your Name">
<input type="email" name="email" placeholder="Your Email">
<textarea name="message" rows="5" placeholder="Your Message"></textarea>
<button type="submit">Send Message</button>
</form>
</div>

<div class="footer">
<p>&copy; 2024 AMSV Virtual Assistant Services. All Rights Reserved.</p>
</div>

</body>
</html>

You might also like