deep-penetration / index.html
Canstralian's picture
Update index.html
96e3c78 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>
Python Code Review &amp; Debugging Assistant
</title>
<!-- Bootstrap CSS -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet"/>
<!-- Custom CSS -->
<link href="style.css" rel="stylesheet"/>
<meta content="noindex, nofollow" name="robots"/>
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="#">
Python Assistant
</a>
<button aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation" class="navbar-toggler" data-target="#navbarNav" data-toggle="collapse" type="button">
<span class="navbar-toggler-icon">
</span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="#">
Home
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">
Services
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">
Contact
</a>
</li>
</ul>
</div>
</nav>
<!-- Hero Section -->
<header class="text-center text-white" id="hero">
<div class="container">
<h1>
🐍 Python Code Review &amp; Debugging Assistant
</h1>
<p>
Enhance your Python skills with our expert assistance.
</p>
<button class="btn btn-light btn-lg" id="getStarted">
Get Started
</button>
</div>
</header>
<!-- Features Section -->
<section class="py-5" id="features">
<div class="container">
<h2 class="text-center">
Our Features
</h2>
<div class="row">
<div class="col-md-4">
<div class="feature-box">
<h3>
Code Review
</h3>
<p>
Get detailed feedback on your Python code.
</p>
</div>
</div>
<div class="col-md-4">
<div class="feature-box">
<h3>
Debugging Assistance
</h3>
<p>
Identify and fix bugs with our expert help.
</p>
</div>
</div>
<div class="col-md-4">
<div class="feature-box">
<h3>
Learning Resources
</h3>
<p>
Access a wealth of Python learning materials.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Form -->
<section class="bg-light py-5" id="contact">
<div class="container">
<h2 class="text-center">
Contact Us
</h2>
<form id="contactForm">
<div class="form-group">
<label for="name">
Name:
</label>
<input class="form-control" id="name" name="name" placeholder="Enter your name" required="" type="text"/>
</div>
<div class="form-group">
<label for="email">
Email:
</label>
<input class="form-control" id="email" name="email" placeholder="Enter your email" required="" type="email"/>
</div>
<div class="form-group">
<label for="message">
Message:
</label>
<textarea class="form-control" id="message" name="message" placeholder="Enter your message" required=""></textarea>
</div>
<button class="btn btn-primary" type="submit">
Submit
</button>
</form>
</div>
</section>
<!-- Bootstrap & jQuery JS -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js">
</script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js">
</script>
<!-- Custom JS -->
<script src="index.js"></script>
</body>
</html>