-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (76 loc) · 2.95 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Name - Software Engineer</title>
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/your-fontawesome-kit.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="home">
<h1>Your Name</h1>
<h2>Software Engineer | AI Enthusiast | PhD Student</h2>
</section>
<section id="about">
<h2>About Me</h2>
<p>I'm a software engineer based in Zurich, Switzerland, with a passion for SSI, AI, and fast development tools. Currently pursuing a PhD in Computer Science, I love exploring the intersection of technology and innovation.</p>
</section>
<section id="projects">
<h2>Projects</h2>
<div class="project-grid">
<div class="project-card">
<h3>Project 1</h3>
<p>Description of your first project.</p>
</div>
<div class="project-card">
<h3>Project 2</h3>
<p>Description of your second project.</p>
</div>
<!-- Add more project cards as needed -->
</div>
</section>
<section id="skills">
<h2>Skills</h2>
<ul class="skills-list">
<li>SSI (Self-Sovereign Identity)</li>
<li>Artificial Intelligence</li>
<li>Software Development</li>
<li>Machine Learning</li>
<li>Web Development</li>
<!-- Add more skills as needed -->
</ul>
</section>
<section id="contact">
<h2>Contact Me</h2>
<form id="contact-form">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<textarea name="message" placeholder="Your Message" required></textarea>
<button type="submit">Send Message</button>
</form>
</section>
</main>
<footer>
<p>© 2024 Your Name. All rights reserved.</p>
<div class="social-links">
<a href="#" target="_blank"><i class="fab fa-github"></i></a>
<a href="#" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="#" target="_blank"><i class="fab fa-twitter"></i></a>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>