-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (33 loc) · 1.02 KB
/
index.html
File metadata and controls
36 lines (33 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/style.css">
<title>Sandeep</title>
</head>
<body class="main">
<div class="Heading">
<header>
<p>Sandeep's Cool Website Home</p>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="pages/about.html">About</a></li>
<li><a href="pages/blog.html">Blog</a></li>
<li><a href="pages/dictionary.html">Dictionary</a></li>
</ul>
</nav>
</div>
<main>
<h2>Greetings</h2>
<p>Hey there! I'm currently exploring the depths of web development and learning something new every day.
Whether it's diving into the world of JavaScript or experimenting with CSS animations, I'm always excited to
expand my knowledge and skills.</p>
</main>
<footer>
<p>Copyright © 2024 Sandeep</p>
</footer>
</body>
</html>