מפרט טכני REVO
בבקשה, אצור עבורך קובץ HTML מבוסס על התמונה ששלחת:
```html
<!DOCTYPE html>
<html lang="he">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Technical Sheet</title>
<style>
body {
font-family: Arial, sans-serif;
direction: rtl;
text-align: right;
}
table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
}
table, th, td {
border: 1px solid black;
}
th, td {
padding: 8px;
text-align: left;
}
th {
background-color: #f2f2f2;
}
</style>
</head>
<body>
<h1>Technical Sheet</h1>
<table>
<tr>
<th>TARGET APPLICATION</th>
<td>Gravel all-around</td>
</tr>
<tr>
<th>FRAME</th>
<td>Full Carbon Monocoque T.E.C.</td>
</tr>
<tr>
<th>FORK</th>
<td>New TITICI Gravel DCR</td>
</tr>
<tr>
<th>ROUTING</th>
<td>Internal</td>
</tr>
<tr>
<th>SIZES (CM)</th>
<td>XS, S, M, L, XL</td>
</tr>
<tr>
<th>FRAME WEIGHT</th>
<td>1110 grams (size M, RTP with hardware)</td>
</tr>
<tr>
<th>HEADSET</th>
<td>Integrated 1.5"</td>
</tr>
<tr>
<th>BB TYPE</th>
<td>Press Fit 386</td>
</tr>
<tr>
<th>BRAKE MOUNT</th>
<td>Flat Mount</td>
</tr>
<tr>
<th>FRONT AXLE</th>
<td>12×100 mm</td>
</tr>
<tr>
<th>REAR AXLE</th>
<td>12×142 mm</td>
</tr>
<tr>
<th>SEAT POST DIAMETER</th>
<td>27.2</td>
</tr>
<tr>
<th>CLAMP</th>
<td>Revo Custom</td>
</tr>
<tr>
<th>MAXIMUM TIRE SIZE</th>
<td>700×50 - 650bx50</td>
</tr>
<tr>
<th>DRIVETRAIN COMPABILITY</th>
<td>Di2, AXS or mechanic</td>
</tr>
</table>
</body>
</html>
```