muhammadasim117 commited on
Commit
ed0b931
·
verified ·
1 Parent(s): 9c66892

Update templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +54 -0
templates/index.html CHANGED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Your Name - Portfolio</title>
7
+ <link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
8
+ </head>
9
+ <body>
10
+ <header>
11
+ <h1>Welcome to My Portfolio</h1>
12
+ <p>Hi, I'm [Your Name], a freelance [Your Profession].</p>
13
+ </header>
14
+ <section id="about">
15
+ <h2>About Me</h2>
16
+ <p>I am a passionate freelancer with expertise in Electrical Engineering and Generative AI. Here's a bit about my background...</p>
17
+ </section>
18
+ <section id="expertise">
19
+ <h2>Expertise</h2>
20
+ <ul>
21
+ <li>Electrical Engineering</li>
22
+ <li>Generative AI</li>
23
+ <li>Python Programming</li>
24
+ <li>Web Development</li>
25
+ </ul>
26
+ </section>
27
+ <section id="projects">
28
+ <h2>Projects</h2>
29
+ <div class="project">
30
+ <h3><a href="{{ url_for('electrical_engineering') }}">Electrical Engineering</a></h3>
31
+ <p>Explore my projects in Electrical Engineering.</p>
32
+ </div>
33
+ <div class="project">
34
+ <h3><a href="{{ url_for('generative_ai') }}">Generative AI</a></h3>
35
+ <p>Discover my work in Generative AI.</p>
36
+ </div>
37
+ </section>
38
+ <section id="services">
39
+ <h2>Services</h2>
40
+ <p>I offer the following services as a freelancer:</p>
41
+ <ul>
42
+ <li>Electrical Circuit Design</li>
43
+ <li>AI Model Development</li>
44
+ <li>Web Development</li>
45
+ <li>Consulting</li>
46
+ </ul>
47
+ </section>
48
+ <section id="contact">
49
+ <h2>Contact Me</h2>
50
+ <p>Email: your.email@example.com</p>
51
+ <p>LinkedIn: <a href="https://www.linkedin.com/in/your-profile">Your LinkedIn Profile</a></p>
52
+ </section>
53
+ </body>
54
+ </html>