Spaces:
Running
Running
Update index.html
Browse files- index.html +132 -55
index.html
CHANGED
@@ -1,57 +1,134 @@
|
|
1 |
<!DOCTYPE html>
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
<
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
</html>
|
|
|
1 |
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="utf-8"/>
|
5 |
+
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
|
6 |
+
<title>
|
7 |
+
Python Code Review & Debugging Assistant
|
8 |
+
</title>
|
9 |
+
<!-- Bootstrap CSS -->
|
10 |
+
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet"/>
|
11 |
+
<meta content="noindex, nofollow" name="robots"/>
|
12 |
+
</head>
|
13 |
+
<body>
|
14 |
+
<!-- Navigation -->
|
15 |
+
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
|
16 |
+
<a class="navbar-brand" href="#">
|
17 |
+
Python Assistant
|
18 |
+
</a>
|
19 |
+
<button aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation" class="navbar-toggler" data-target="#navbarNav" data-toggle="collapse" type="button">
|
20 |
+
<span class="navbar-toggler-icon">
|
21 |
+
</span>
|
22 |
+
</button>
|
23 |
+
<div class="collapse navbar-collapse" id="navbarNav">
|
24 |
+
<ul class="navbar-nav ml-auto">
|
25 |
+
<li class="nav-item active">
|
26 |
+
<a class="nav-link" href="#">
|
27 |
+
Home
|
28 |
+
</a>
|
29 |
+
</li>
|
30 |
+
<li class="nav-item">
|
31 |
+
<a class="nav-link" href="#">
|
32 |
+
Services
|
33 |
+
</a>
|
34 |
+
</li>
|
35 |
+
<li class="nav-item">
|
36 |
+
<a class="nav-link" href="#">
|
37 |
+
Contact
|
38 |
+
</a>
|
39 |
+
</li>
|
40 |
+
</ul>
|
41 |
+
</div>
|
42 |
+
</nav>
|
43 |
+
<!-- Hero Section -->
|
44 |
+
<header class="text-center text-white" id="hero">
|
45 |
+
<div class="container">
|
46 |
+
<h1>
|
47 |
+
🐍 Python Code Review & Debugging Assistant
|
48 |
+
</h1>
|
49 |
+
<p>
|
50 |
+
Enhance your Python skills with our expert assistance.
|
51 |
+
</p>
|
52 |
+
<button class="btn btn-light btn-lg" id="getStarted">
|
53 |
+
Get Started
|
54 |
+
</button>
|
55 |
+
</div>
|
56 |
+
</header>
|
57 |
+
<!-- Features Section -->
|
58 |
+
<section class="py-5" id="features">
|
59 |
+
<div class="container">
|
60 |
+
<h2 class="text-center">
|
61 |
+
Our Features
|
62 |
+
</h2>
|
63 |
+
<div class="row">
|
64 |
+
<div class="col-md-4">
|
65 |
+
<div class="feature-box">
|
66 |
+
<h3>
|
67 |
+
Code Review
|
68 |
+
</h3>
|
69 |
+
<p>
|
70 |
+
Get detailed feedback on your Python code.
|
71 |
+
</p>
|
72 |
+
</div>
|
73 |
+
</div>
|
74 |
+
<div class="col-md-4">
|
75 |
+
<div class="feature-box">
|
76 |
+
<h3>
|
77 |
+
Debugging Assistance
|
78 |
+
</h3>
|
79 |
+
<p>
|
80 |
+
Identify and fix bugs with our expert help.
|
81 |
+
</p>
|
82 |
+
</div>
|
83 |
+
</div>
|
84 |
+
<div class="col-md-4">
|
85 |
+
<div class="feature-box">
|
86 |
+
<h3>
|
87 |
+
Learning Resources
|
88 |
+
</h3>
|
89 |
+
<p>
|
90 |
+
Access a wealth of Python learning materials.
|
91 |
+
</p>
|
92 |
+
</div>
|
93 |
+
</div>
|
94 |
+
</div>
|
95 |
+
</div>
|
96 |
+
</section>
|
97 |
+
<!-- Contact Form -->
|
98 |
+
<section class="bg-light py-5" id="contact">
|
99 |
+
<div class="container">
|
100 |
+
<h2 class="text-center">
|
101 |
+
Contact Us
|
102 |
+
</h2>
|
103 |
+
<form id="contactForm">
|
104 |
+
<div class="form-group">
|
105 |
+
<label for="name">
|
106 |
+
Name:
|
107 |
+
</label>
|
108 |
+
<input class="form-control" id="name" name="name" placeholder="Enter your name" required="" type="text"/>
|
109 |
+
</div>
|
110 |
+
<div class="form-group">
|
111 |
+
<label for="email">
|
112 |
+
Email:
|
113 |
+
</label>
|
114 |
+
<input class="form-control" id="email" name="email" placeholder="Enter your email" required="" type="email"/>
|
115 |
+
</div>
|
116 |
+
<div class="form-group">
|
117 |
+
<label for="message">
|
118 |
+
Message:
|
119 |
+
</label>
|
120 |
+
<textarea class="form-control" id="message" name="message" placeholder="Enter your message" required=""></textarea>
|
121 |
+
</div>
|
122 |
+
<button class="btn btn-primary" type="submit">
|
123 |
+
Submit
|
124 |
+
</button>
|
125 |
+
</form>
|
126 |
+
</div>
|
127 |
+
</section>
|
128 |
+
<!-- Bootstrap & jQuery JS -->
|
129 |
+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js">
|
130 |
+
</script>
|
131 |
+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js">
|
132 |
+
</script>
|
133 |
+
</body>
|
134 |
</html>
|