You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

78 lines
1.7 KiB

<html>
<head>
<title>30 Days Of HTML: Table</title>
<style>
/* Table CSS */
table,
td,
th {
border: 2px solid gray;
border-collapse: collapse;
border: 1px solid #a785df;
}
table {
margin-top: 15px;
width: 75%;
}
td {
padding-left: 10px;
}
th {
background-color: #7433df;
color: white;
}
</style>
</head>
<body>
<table>
<thead>
<tr>
<th>Challenge</th>
<th>Days</th>
<th>Time</th>
<th>Stars(K)</th>
<th>URL</th>
</tr>
</thead>
<tbody>
<tr>
<td>30 Days of Python</td>
<td>30</td>
<td>November 2019</td>
<td>4.6K</td>
<td>
<a href="https://github.com/Asabeneh/30-Days-Of-Python">Link</a>
</td>
</tr>
<tr>
<td>30 Days of JavaScript</td>
<td>30</td>
<td>January 2020</td>
<td>6.8K</td>
<td>
<a href="https://github.com/Asabeneh/30-Days-Of-JavaScript">Link</a>
</td>
</tr>
<tr>
<td>30 Days of React</td>
<td>30</td>
<td>October 2020</td>
<td>5.6K</td>
<td>
<a href="https://github.com/Asabeneh/30-Days-Of-React">Link</a>
</td>
</tr>
<tr>
<td>30 Days of HTML</td>
<td>30</td>
<td>February 2011</td>
<td>33</td>
<td>
<a href="https://github.com/Asabeneh/30-Days-Of-HTML">Link</a>
</td>
</tr>
</tbody>
</table>
</body>
</html>