31 lines
824 B
HTML
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>© 2026 Secure Web Inc.</p>
|
||
|
|
</footer>
|
||
|
|
<script src="js/script.js"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|