-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (71 loc) · 2.04 KB
/
index.html
File metadata and controls
82 lines (71 loc) · 2.04 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Abhishek's Page</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(135deg, #6a11cb, #2575fc);
color: #fff;
text-align: center;
}
header {
padding: 20px;
background: #4c47aa;
color: #fff;
}
h1 {
margin: 0;
}
section {
margin: 30px;
padding: 20px;
background: rgba(255, 255, 255, 0.1);
border-radius: 10px;
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
ul {
list-style: none;
padding: 0;
}
li {
margin: 10px 0;
}
a {
color: #ffdd57;
text-decoration: none;
font-weight: bold;
transition: color 0.3s;
}
a:hover {
color: #ffd700;
}
</style>
</head>
<body>
<header>
<h1>Abhishek's Information Page</h1>
</header>
<section>
<h2>Personal Details</h2>
<ul>
<li><b>Name:</b> Abhishek Singh</li>
<li><b>Enrollment Number:</b>2403031240028</li>
<li><b>Lab:</b>505</li>
</ul>
</section>
<section>
<h2>Projects</h2>
<ul>
<li><a href="Word & Character Counter.html" target="_blank">Project 1: Word Counter</a></li>
<li><a href="Countdown Timer.html" target="_blank">Project 2: Countdown Timer</a></li>
<li><a href="Live Clock with Theme Toggle.html" target="_blank">Project 3: Live Clock</a></li>
<li><a href="Light Bulb Toggle.html" target="_blank">Project 4: Light Bulb Toggle</a></li>
</ul>
</section>
</body>
</html>