You are on page 1of 2

<!

DOCTYPE html>
<html>
<head>

<title>Orari Javor</title>
<style>
body {
font-family: Arial, sans-serif;
}

table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}

th, td {
padding: 15px;
text-align: center;
border: 1px solid ;
}

th {
background-color: purple
color:purple;
}

td:nth-child(1), th:nth-child(1) {
background-color: pink
}

td:nth-child(2), th:nth-child(2) {
background-color: blue
}

td:nth-child(3), th:nth-child(3) {
background-color: red
}

td:nth-child(4), th:nth-child(4) {
background-color: orange
}

td:nth-child(5), th:nth-child(5) {
background-color: brown
}
</style>
</head>
<body>

<h1>Orari Javor</h1>

<table>
<tr>
<th>Dita</th>
<th>Matematike</th>
<th>Fizike</th>
<th>Biologji</th>
</tr>
<tr>
<td>E Hënë</td>
<td>Matematike</td>
<td>Fizike</td>
<td>Biologji</td>
</tr>
<tr>
<td>E Martë</td>
<td>Ed. fizik</td>
<td>Gjeografi</td>
<td>Gjuhë shqipe</td>
</tr>
<tr>
<td>E Mërkurë</td>
<td>Histori</td>
<td>Matematike</td>
<td>Art pamor</td>
</tr>
<tr>
<td>E Enjte</td>
<td>Anglisht</td>
<td>Tik</td>
<td>Letersi</td>
</tr>
<tr>
<td>E Premte</td>
<td>Anglisht</td>
<td>Kimi</td>
<td>Qytetari</td>
</tr>
</table>

</body>
</html>

You might also like