Files
DevSecOps-Lab/index.html

79 lines
2.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sample Web Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav class="navbar">
<div class="container">
<h1 class="logo">MyWebApp</h1>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
</header>
<main>
<section id="home" class="hero">
<div class="container">
<h2>Welcome to Our Sample Web Page</h2>
<p>This is a sample web application built with HTML, CSS, and JavaScript.</p>
<button class="cta-button" id="ctaBtn">Get Started</button>
</div>
</section>
<section id="about" class="about">
<div class="container">
<h2>About Us</h2>
<p>We create modern, responsive web applications that deliver excellent user experiences.</p>
</div>
</section>
<section id="services" class="services">
<div class="container">
<h2>Services</h2>
<div class="service-grid">
<div class="service-card">
<h3>Web Design</h3>
<p>Beautiful and responsive designs for all devices.</p>
</div>
<div class="service-card">
<h3>Development</h3>
<p>Fast and scalable web applications.</p>
</div>
<div class="service-card">
<h3>Support</h3>
<p>Ongoing maintenance and support services.</p>
</div>
</div>
</div>
</section>
<section id="contact" class="contact">
<div class="container">
<h2>Contact Us</h2>
<form id="contactForm">
<input type="email" placeholder="Your email" required>
<textarea placeholder="Your message" rows="5" required></textarea>
<button type="submit">Send Message</button>
</form>
</div>
</section>
</main>
<footer>
<p>&copy; 2025 MyWebApp. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>