-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathday_6-2.html
More file actions
34 lines (34 loc) · 865 Bytes
/
day_6-2.html
File metadata and controls
34 lines (34 loc) · 865 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>My Portfolio</title>
<link rel="stylesheet" href="day_6-2.css"/>
</head>
<body>
<header>
<h1>My Portfolio</h1>
</header>
<main>
<section class="intro">
<h2>About Me</h2>
<p>I am a web developer skilled in HTML, CSS, and JavaScript.</p>
</section>
<section class="projects">
<h2>Projects</h2>
<div class="project">
<h3>Project A</h3>
<p>Weather App using OpenWeather API.</p>
</div>
<div class="project">
<h3>Project B</h3>
<p>Todo App using LocalStorage and React.</p>
</div>
</section>
</main>
<footer>
<p>Contact me at: <a href="mailto:me@example.com">me@example.com</a></p>
</footer>
</body>
</html>