-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (89 loc) · 2.64 KB
/
index.html
File metadata and controls
96 lines (89 loc) · 2.64 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>John Doe - Web Developer</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f9;
color: #333;
}
header {
background-color: #4CAF50;
color: white;
padding: 10px 0;
text-align: center;
}
nav {
background-color: #333;
overflow: hidden;
}
nav a {
float: left;
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
nav a:hover {
background-color: #ddd;
color: black;
}
.container {
padding: 20px;
}
.about, .portfolio, .contact {
margin-bottom: 20px;
}
.footer {
text-align: center;
padding: 10px 0;
background-color: #333;
color: white;
}
</style>
</head>
<body>
<header>
<h1>John Doe</h1>
<p>Web Developer</p>
</header>
<nav>
<a href="#about">About Me</a>
<a href="#portfolio">Portfolio</a>
<a href="#contact">Contact</a>
</nav>
<div class="container">
<section id="about" class="about">
<h2>About Me</h2>
<p>Hello! I'm John Doe, a passionate web developer with a knack for creating dynamic and responsive websites. With a background in computer science and a love for coding, I strive to deliver the best web experiences for users.</p>
</section>
<section id="portfolio" class="portfolio">
<h2>Portfolio</h2>
<p>Here are some of my recent projects:</p>
<ul>
<li><a href="#">Project One</a> - A responsive e-commerce website.</li>
<li><a href="#">Project Two</a> - A social media application.</li>
<li><a href="#">Project Three</a> - A personal blog platform.</li>
</ul>
</section>
<section id="contact" class="contact">
<h2>Contact</h2>
<p>If you'd like to get in touch, feel free to send me an email at <a href="mailto:johndoe@example.com">johndoe@example.com</a> or reach out via social media:</p>
<ul>
<li><a href="#">LinkedIn</a></li>
<li><a href="#">Twitter</a></li>
<li><a href="#">GitHub</a></li>
</ul>
</section>
</div>
<div class="footer">
<p>© 2024 John Doe. All rights reserved.</p>
</div>
</body>
</html>