Skip to content

Commit 116e324

Browse files
Update index.html
1 parent cb9d554 commit 116e324

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

index.html

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
}
1313
body {
1414
font-family: Arial, Helvetica, sans-serif;
15-
background-color: #eee;
15+
background-color: #f7f7f7;
1616
}
1717
h1 {
1818
text-align: center;
@@ -24,28 +24,39 @@
2424
width: 90%;
2525
border: 1px solid black;
2626
border-collapse: collapse;
27+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
28+
/* font-weight: bold; */
2729
}
2830
table th, td {
2931
border: 1px solid black;
3032
padding: 5px 20px;
3133
}
34+
a {
35+
text-decoration: none;
36+
}
37+
a:hover {
38+
text-decoration: underline;
39+
}
3240
.center {
3341
text-align: center;
3442
}
43+
#t-head {
44+
background-color: yellow;
45+
}
3546
</style>
3647
</head>
3748
<body>
3849
<h1>HTML CSS JavaScript Projects</h1>
3950
<table>
40-
<tr>
51+
<tr id="t-head">
4152
<th class="center">No.</th>
4253
<th>Project Name</th>
4354
<th>Live link</th>
4455
</tr>
4556
<tr>
4657
<td class="center">1</td>
4758
<td>Age Calculator</td>
48-
<td class="center"><a href="#" target="_blank">Click here</a></td>
59+
<td class="center"><a href="./project-1-age-calculator/index.html" target="_blank">Click here</a></td>
4960
</tr>
5061
<tr>
5162
<td class="center">2</td>
@@ -59,4 +70,4 @@ <h1>HTML CSS JavaScript Projects</h1>
5970
</tr>
6071
</table>
6172
</body>
62-
</html>
73+
</html>

0 commit comments

Comments
 (0)