-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (112 loc) · 3.38 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Personal Website</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="styles.css">
<style>
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
margin: 0;
background-color: #f4f4f4;
color: #333;
}
header {
background: #333;
color: #fff;
padding: 1.5rem;
text-align: center;
}
nav {
background: #444;
padding: 1rem;
}
nav ul {
list-style: none;
display: flex;
justify-content: center;
padding: 0;
}
nav ul li {
margin: 0 1rem;
}
nav ul li a {
color: #fff;
text-decoration: none;
transition: color 0.3s;
}
nav ul li a:hover {
color: #00bcd4;
}
section {
max-width: 800px;
margin: 2rem auto;
padding: 1.5rem;
background: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
footer {
text-align: center;
padding: 1rem;
background: #333;
color: #fff;
position: relative;
bottom: 0;
width: 100%;
}
.social-icons {
margin-top: 1rem;
}
.social-icons a {
margin: 0 0.5rem;
color: #333;
text-decoration: none;
transition: color 0.3s;
}
.social-icons a:hover {
color: #00bcd4;
}
</style>
</head>
<body>
<header>
<h1>Welcome to My Personal Website!</h1>
</header>
<nav>
<ul>
<li><a href="#about">About Me</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<section id="about">
<h2>About Me</h2>
<p>Hello! I am a developer passionate about programming and technology, who loves to share knowledge and learn new things.</p>
</section>
<section id="projects">
<h2>Projects</h2>
<p>Here are some of the projects I've recently worked on:</p>
<ul>
<li>Project 1 - A fun web application</li>
<li>Project 2 - A machine learning tool</li>
</ul>
</section>
<section id="contact">
<h2>Contact</h2>
<p>You can reach me via email: <a href="mailto:[email protected]">[email protected]</a></p>
<div class="social-icons">
<a href="https://github.com/yourusername" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://linkedin.com/in/yourusername" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://twitter.com/yourusername" target="_blank"><i class="fab fa-twitter"></i></a>
</div>
</section>
<footer>
<p>© 2024 My Personal Website. All rights reserved.</p>
</footer>
</body>
</html>