Chicago Bulls, Toronto Raptors’ı 122-121 mağlup ederek önemli bir galibiyet aldı. Maçın bitimine kısa süre kala Nikola Vucevic’in kritik basketi, Bulls’a galibiyeti getirdi.
Bulls’ta Vucevic 24 sayı ile takımının en skorer ismi olurken, Coby White 19 sayı ve 5 asistle katkı sağladı. Toronto Raptors’ta ise RJ Barrett 32 sayı, 5 ribaund ve 9 asistle öne çıkan isim oldu ancak galibiyet için yeterli olmadı.
<!DOCTYPE html>
<html lang=”tr”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>Box Score: Bulls 122-121 Raptors</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
background-color: #f9f9f9;
color: #333;
text-align: center;
}
h1, h2 {
color: #d63031;
}
table {
width: 90%;
margin: 20px auto;
border-collapse: collapse;
background-color: #fff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
th, td {
padding: 10px;
border: 1px solid #ddd;
text-align: center;
}
thead {
background-color: #d63031;
color: white;
}
tbody tr:nth-child(even) {
background-color: #f2f2f2;
}
tbody tr:hover {
background-color: #f1f1f1;
}
</style>
</head>
<body>
<h1>Chicago Bulls 122 – 121 Toronto Raptors</h1>
<!– Chicago Bulls Box Score –>
<h2>Chicago Bulls</h2>
<table>
<thead>
<tr>
<th>Oyuncu</th>
<th>Sayı</th>
<th>Ribaund</th>
<th>Asist</th>
</tr>
</thead>
<tbody>
<tr>
<td>N. Vučević</td>
<td>24</td>
<td>5</td>
<td>3</td>
</tr>
<tr>
<td>C. White</td>
<td>19</td>
<td>0</td>
<td>5</td>
</tr>
<tr>
<td>T. Horton-Tucker</td>
<td>15</td>
<td>4</td>
<td>2</td>
</tr>
<tr>
<td>A. Dosunmu</td>
<td>12</td>
<td>5</td>
<td>5</td>
</tr>
<tr>
<td>J. Giddey</td>
<td>11</td>
<td>9</td>
<td>8</td>
</tr>
</tbody>
</table>
<!– Toronto Raptors Box Score –>
<h2>Toronto Raptors</h2>
<table>
<thead>
<tr>
<th>Oyuncu</th>
<th>Sayı</th>
<th>Ribaund</th>
<th>Asist</th>
</tr>
</thead>
<tbody>
<tr>
<td>R. Barrett</td>
<td>32</td>
<td>5</td>
<td>9</td>
</tr>
<tr>
<td>G. Dick</td>
<td>27</td>
<td>6</td>
<td>2</td>
</tr>
<tr>
<td>O. Agbaji</td>
<td>15</td>
<td>3</td>
<td>0</td>
</tr>
<tr>
<td>C. Boucher</td>
<td>11</td>
<td>10</td>
<td>0</td>
</tr>
<tr>
<td>J. Shead</td>
<td>10</td>
<td>4</td>
<td>6</td>
</tr>
<tr>
<td>K. Olynyk</td>
<td>7</td>
<td>3</td>
<td>1</td>
</tr>
</tbody>
</table>
</body>
</html>