Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added JONATHAN.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added SHIVAN.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
44 changes: 44 additions & 0 deletions about us.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NovaTech Solutions | About Us</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="logo">NovaTech</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html" class="active">About Us</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>

<main>
<section class="page-header">
<h1>Our Journey & Vision</h1>
</section>

<section class="content-block">
<h2>Our Mission</h2>
<p>To deliver cutting-edge, user-centric digital solutions that empower businesses to achieve unprecedented online success and growth.</p>

<h2>Our History</h2>
<p>Founded in 2024 by a group of ambitious students, NovaTech Solutions was born from a shared passion for technology and a commitment to quality. What started as a small project has quickly grown into a tech company focused on responsive design and client partnership.</p>
</section>

</main>

<footer>
<p>&copy; 2025 NovaTech Solutions. All rights reserved.</p>
</footer>

<script src="script.js"></script>
</body>
</html>
Binary file added asika.png.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
48 changes: 48 additions & 0 deletions contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NovaTech Solutions | Contact Us</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="logo">NovaTech</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="contact.html" class="active">Contact</a></li>
</ul>
</nav>
</header>

<main>
<section class="page-header">
<h1>Get In Touch</h1>
<p>We're ready to discuss your next digital project. Send us a message or find us on the map.</p>
</section>

<section class="contact-grid">

<div class="contact-form-container">
<h2>Send Us a Message</h2>
<form action="#" method="POST" class="contact-form">
<label for="name">Your Name:</label>
<input type="text" id="name" name="name" required>

<label for="email">Your Email:</label>
<input type="email" id="email" name="email" required>

<label for="subject">Subject:</label>
<input type="text" id="subject" name="subject" required>

<label for="message">Your Project Details:</label>
<textarea id="message" name="message" rows="6" required></textarea>

<button type="submit">Submit Inquiry</button>
</form>
</div>
Loading