UniTO/anno3/progmobile/presentazione/table.html
Francesco Mecca 31cb7db080 progmobile
2020-06-16 19:27:03 +02:00

66 lines
1.9 KiB
HTML

<html lang="en">
<head>
<title>Tabella comparazione</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container" style="background-image: #fff">
<h2>Confronto servizi di streaming</h2>
<p>The .table class adds basic styling (light padding and only horizontal dividers) to a table:</p>
<table class="table table-hover table-dark">
<thead>
<tr>
<th></th>
<th>Apollon</th>
<th>Spotify</th>
<th>Apple Music</th>
<th>Amazon Music</th>
</tr>
</thead>
<tbody>
<tr>
<td>Compatibilità con sistemi HIFI</td>
<td>V (MPD)</td>
<td>X</td>
<td>X</td>
<td>X</td>
</tr>
<tr>
<td>Qualità di riproduzione</td>
<td>160 kbps (LQ),<br> 256 kbps (MQ),<br> 500 kbps (HQ)</td>
<td>128 kpbs</td>
<td>192 kpbs</td>
<td>192 kpbs</td>
</tr>
<tr>
<td>DRM</td>
<td>X</td>
<td>V</td>
<td>V</td>
<td>V</td>
</tr>
<tr>
<td>Claim of ownership</td>
<td>V</td>
<td>X</td>
<td>V</td>
<td>X (con rimborso)</td>
</tr>
<tr>
<td>Playlist personalizzate</td>
<td>V (ed esportabili)</td>
<td>Premium</td>
<td>V</td>
<td>X</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>