File size: 3,606 Bytes
1bbd61d
e13952b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1bbd61d
1
2
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!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"/>
  <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>
 </body>
</html>