-77%
Version :
Latest Version
Rs1,992.00 Original price was: Rs1,992.00.Rs450.00Current price is: Rs450.00.
vsdocs/
├── index.html
├── assets/
│ ├── css/
│ ├── js/
│ └── images/
├── docs/
│ ├── getting-started.html
│ ├── features.html
│ └── api-reference.html
└── README.md
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VSDocs - Online Documentation</title>
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body>
<!-- Header Section -->
<header>
<div class="container">
<div class="logo">VSDocs</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="docs/getting-started.html">Getting Started</a></li>
<li><a href="docs/features.html">Features</a></li>
<li><a href="docs/api-reference.html">API Reference</a></li>
</ul>
</nav>
</div>
</header>
<!-- Hero Section -->
<section class="hero">
<h1>Welcome to VSDocs</h1>
<p>Your comprehensive guide to using our application.</p>
</section>
<!-- Documentation Sections -->
<section class="content">
<h2>Documentation Overview</h2>
<div class="doc-cards">
<div class="doc-card">
<h3>Getting Started</h3>
<p>Learn how to set up and start using our application.</p>
<a href="docs/getting-started.html" class="cta-button">Read More</a>
</div>
<div class="doc-card">
<h3>Features</h3>
<p>Discover all the amazing features our application offers.</p>
<a href="docs/features.html" class="cta-button">Read More</a>
</div>
<div class="doc-card">
<h3>API Reference</h3>
<p>Access detailed API documentation for developers.</p>
<a href="docs/api-reference.html" class="cta-button">Read More</a>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<p>© 2023 VSDocs. All rights reserved.</p>
</footer>
<script src="assets/js/scripts.js"></script>
</body>
</html>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
color: #333;
background-color: #f4f4f4;
}
header {
background: #007bff;
color: white;
padding: 20px 0;
}
.container {
display: flex;
justify-content: space-between;
align-items: center;
width: 90%;
margin: auto;
}
.logo {
font-size: 24px;
font-weight: bold;
}
nav ul {
list-style-type: none;
display: flex;
margin: 0;
padding: 0;
}
nav ul li {
margin-left: 20px;
}
nav a {
color: white;
text-decoration: none;
}
.hero {
text-align: center;
padding: 60px 20px;
background: #6db3f2;
color: white;
}
.content {
padding: 40px 20px;
text-align: center;
}
.doc-cards {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.doc-card {
background: white;
border-radius: 8px;
padding: 20px;
margin: 10px;
width: 250px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.cta-button {
background: #28a745;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
text-decoration: none;
display: inline-block;
margin-top: 10px;
}
footer {
background: #333;
color: white;
text-align: center;
padding: 20px;
position: relative;
bottom: 0;
width: 100%;
}
// Placeholder for future JavaScript functionalities
console.log('VSDocs loaded.');
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Getting Started - VSDocs</title>
<link rel="stylesheet" href="../assets/css/styles.css">
</head>
<body>
<header>
<div class="container">
<div class="logo">VSDocs</div>
<nav>
<ul>
<li><a href="../index.html">Home</a></li>
<li><a href="getting-started.html">Getting Started</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="api-reference.html">API Reference</a></li>
</ul>
</nav>
</div>
</header>
<section class="content">
<h2>Getting Started</h2>
<p>Welcome to the Getting Started guide. Follow these steps to set up your application.</p>
<!-- Add detailed instructions here -->
</section>
<footer>
<p>© 2023 VSDocs. All rights reserved.</p>
</footer>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Features - VSDocs</title>
<link rel="stylesheet" href="../assets/css/styles.css">
</head>
<body>
<header>
<div class="container">
<div class="logo">VSDocs</div>
<nav>
<ul>
<li><a href="../index.html">Home</a></li>
<li><a href="getting-started.html">Getting Started</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="api-reference.html">API Reference</a></li>
</ul>
</nav>
</div>
</header>
<section class="content">
<h2>Features</h2>
<p>Discover all the amazing features our application offers.</p>
<!-- Add feature descriptions here -->
</section>
<footer>
<p>© 2023 VSDocs. All rights reserved.</p>
</footer>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>API Reference - VSDocs</title>
<link rel="stylesheet" href="../assets/css/styles.css">
</head>
<body>
<header>
<div class="container">
<div class="logo">VSDocs</div>
<nav>
<ul>
<li><a href="../index.html">Home</a></li>
<li><a href="getting-started.html">Getting Started</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="api-reference.html">API Reference</a></li>
</ul>
</nav>
</div>
</header>
<section class="content">
<h2>API Reference</h2>
<p>Access detailed API documentation for developers.</p>
<!-- Add API documentation here -->
</section>
<footer>
<p>© 202
1. All digital products are the most recent version, with no possibility of free updates. After payment, you can request an update to the most recent version for 5 days if a new version is released. We free support within 5 days.
2. If a license is required (Excludes WHMCS license , we provide only method not license), please contact us via email or ticket for assistance with activation. Our license is only valid for activation and does not include support.
3. We provide Mobile, PHP script installation services for $19.90 / ₹1700. Please create a backup after installation as we do not support re-installation. For mobile app source code, we do not offer installation services.
4. If you have any questions, please contact us by email [email protected] or create a ticket on this page
5. Please note that any digital products presented on the website do not contain malicious code, viruses or advertising. You will receive the original files from the developers. We do not sell any products that have been downloaded from other websites.
6. The response time can last up to 6 hours.
No account yet?
Create an Account