Spaces:
Running
Running
Update index.html
Browse files- index.html +39 -19
index.html
CHANGED
@@ -1,19 +1,39 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
</
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Flask Application Project π</title>
|
7 |
+
<link rel="stylesheet" href="static/css/style.css">
|
8 |
+
</head>
|
9 |
+
<body>
|
10 |
+
<header>
|
11 |
+
<h1>Flask Application Project π</h1>
|
12 |
+
<nav>
|
13 |
+
<ul>
|
14 |
+
<li><a href="index.html">Home</a></li>
|
15 |
+
<li><a href="installation.html">Installation & Usage</a></li>
|
16 |
+
<li><a href="research.html">Research Integration</a></li>
|
17 |
+
</ul>
|
18 |
+
</nav>
|
19 |
+
</header>
|
20 |
+
<main>
|
21 |
+
<section id="overview">
|
22 |
+
<h2>Overview</h2>
|
23 |
+
<p>Welcome to the Flask Application Project! This project is a simple Flask-based code editor and executor enhanced with optimization suggestions and research-backed evaluation.</p>
|
24 |
+
</section>
|
25 |
+
<section id="features">
|
26 |
+
<h2>Features</h2>
|
27 |
+
<ul>
|
28 |
+
<li>π Execute Python code in real-time</li>
|
29 |
+
<li>π Integrated linting and testing tools</li>
|
30 |
+
<li>π‘ Research-based code optimization suggestions</li>
|
31 |
+
<li>π Comprehensive documentation</li>
|
32 |
+
</ul>
|
33 |
+
</section>
|
34 |
+
</main>
|
35 |
+
<footer>
|
36 |
+
<p>© 2023 Flask Application Project. All rights reserved.</p>
|
37 |
+
</footer>
|
38 |
+
</body>
|
39 |
+
</html>
|