31 lines
797 B
HTML
31 lines
797 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>About - 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>About Our 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>Our Mission</h2>
|
||
|
|
<p>To develop secure, professional, and well-structured web applications.</p>
|
||
|
|
</section>
|
||
|
|
</main>
|
||
|
|
<footer>
|
||
|
|
<p>© 2026 Secure Web Inc.</p>
|
||
|
|
</footer>
|
||
|
|
<script src="js/script.js"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|