-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (85 loc) · 2.99 KB
/
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
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Naveen Pal</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<nav>
<div class="nav-main">
<div class="nav-header">
<img src="logo.svg" alt="." height="50px" />
<h1>Naveen Pal</h1>
<i class="fa fa-bars" aria-hidden="true"></i>
</div>
<ul class="menu">
<li><a href="projects.html">Projects</a></li>
<li><a href="game.html">Games</a></li>
<li><a href="jadoo.html">Jadoo</a></li>
<li><a href="blogs.html">Blog</a></li>
</ul>
</div>
</nav>
<div class="hello">
<span id="hello_w"><b>Hello World!</b></span>
<br>
<span class="thisis">(This is what we all begin with*)</span>
</div>
</div>
<main>
<div class="container">
<section class="welcome">
<div class="greeting-message">
<h1 class="greeting"></h1>
<p><b>Welcome,</b> to my little corner on the <span class="highlight">Internet</span> 🌐.</p>
</div>
</section>
<section class="info">
<section class="about">
<div class="about-content">
<!-- <h2>Who Am I?</h2> -->
<p>I am Naveen Pal, studying Computer Science Engineering at IIT Gandhinagar 😊.</p>
<!-- <h2>More About Me</h2> -->
<p>I love learning about all facinating things in tech. My interests lie in Automation, Cybersecurity, and
App Development 🚀.</p>
<!-- <h2>About This Website</h2> -->
<p>I created this website to showcase my projects and blog, all in one place. At the bottom-right, you'll
find my to-do list ✍️.</p>
<p>For any conversation fell free to contact me, send "hi" me on my whatsapp number📱 +91 7415233022 or send
me a mail on 23110216@iitgn.ac.in✉️ </p>
</div>
</section>
<section class="pic">
<div class="profile-image">
<img src="myphoto.jpg" alt="Naveen Pal">
</div>
</section>
</section>
</div>
<div class="task" id="id1">
<div class='task-data'>
<form class="form">
<input type="text" class="input" placeholder="Enter your task" autocomplete="on" />
<ul class="list">
</ul>
</form>
</div>
<div id="task-container">
<i class="fa fa-tasks" aria-hidden="false"></i>
</div>
</div>
</main>
<footer>
<div class="foot-contant">
Copyright © 2024 Naveen Pal
</div>
</footer>
<script src="js/script.js"></script>
</body>
</html>