Files
dwn/tests/index.html
T
retoor 2c8bc73cfd feat: introduce v2.0 abstraction layer with core types, backend interface, and plugin system
feat: add fade effects with API control and real-time event subscription
test: add API integration tests with isolated test environment and coverage reporting
build: update Makefile for recursive source finding, dynamic linking, and test targets
docs: document abstraction layer, fade effects, and API enhancements in README
2026-02-07 12:04:52 +00:00

31 lines
824 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home - Secure Web Project</title>
<link rel="stylesheet" href="css/style.css">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self';">
</head>
<body>
<header>
<h1>Welcome to Our Secure Web Project</h1>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<main>
<section>
<h2>Introduction</h2>
<p>This project follows best practices for security, structure, and professionalism.</p>
</section>
</main>
<footer>
<p>&copy; 2026 Secure Web Inc.</p>
</footer>
<script src="js/script.js"></script>
</body>
</html>