S-Dreamer commited on
Commit
661c712
Β·
verified Β·
1 Parent(s): 61de114

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +39 -19
index.html CHANGED
@@ -1,19 +1,39 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 &amp; 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>&copy; 2023 Flask Application Project. All rights reserved.</p>
37
+ </footer>
38
+ </body>
39
+ </html>