-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssignment.html
More file actions
72 lines (72 loc) · 1.73 KB
/
Copy pathAssignment.html
File metadata and controls
72 lines (72 loc) · 1.73 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
<!DOCTYPE html>
<html>
<head>
<title>My Portfolio</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px 0;
}
nav {
background-color: #f4f4f4;
padding: 10px 0;
text-align: center;
}
nav a {
text-decoration: none;
color: #333;
margin: 0 10px;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 0 20px;
}
h1, h2 {
margin-bottom: 10px;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin-bottom: 5px;
}
</style>
</head>
<body>
<header>
<h1>My Portfolio</h1>
</header>
<nav>
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#projects">Projects</a>
</nav>
<div class="container">
<section id="home">
<h2>Home</h2>
<p>Welcome to my portfolio website!</p>
</section>
<section id="about">
<h2>About</h2>
<p>I am a passionate web developer with a keen interest in creating innovative web solutions.</p>
</section>
<section id="projects">
<h2>Projects</h2>
<ul>
<li>Project 1: Description of Project 1</li>
<li>Project 2: Description of Project 2</li>
<li>Project 3: Description of Project 3</li>
</ul>
</section>
</div>
</body>
</html>