-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
38 lines (35 loc) · 962 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>John Doe</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<nav>
<h1>John Doe</h1>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="cv.html">CV</a></li>
</ul>
</nav>
</header>
<main>
<section id="about">
<h2>About Me</h2>
<img src="profile_picture.jpg" alt="Profile Picture" />
<p>
Hi, I'm John Doe, a software architect and freelancer. I have a
passion for programming, reading, and nature. In my free time, you can
find me exploring new technologies, diving into books, or hiking in
the mountains.
</p>
</section>
</main>
<footer>
<p>© 2023 John Doe</p>
</footer>
</body>
</html>