-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1017 Bytes
/
index.html
File metadata and controls
34 lines (34 loc) · 1017 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>Mohit - Intro Page</title>
<style>
body {
font-family: sans-serif;
max-width: 600px;
margin: 50px auto;
padding: 20px;
background-color: #f4f4f4;
border-radius: 8px;
}
h1 { color: #333; }
a { color: #007acc; text-decoration: none; }
</style>
</head>
<body>
<h1>Hey, I'm Mohit 👋</h1>
<p>Aspiring Full Stack Developer. Currently learning HTML, CSS, and JavaScript.</p>
<h2>🧠 Learning Journey</h2>
<ul>
<li>✅ Completed HTML Basics</li>
<li>🎯 Next up: CSS Fundamentals</li>
</ul>
<h2>🔗 Connect</h2>
<p>
<a href="https://github.com/mohit-devlogs" target="_blank">GitHub</a> |
<a href="https://www.linkedin.com/in/mohit-bisht-452496327?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app" target="_blank">LinkedIn</a>
</p>
</body>
</html>