Praticando um pouco do editor vim
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.
 
 
 

65 lines
1.3 KiB

<html lang="pt-br">
<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>PRATICANDO VIM</h1>
<p>RUNNING TABLE</p>
<div>
<table border="1" width="100%">
<thead>
<tr>
<th colspan="3">Running</th>
</tr>
</thead>
<tbody>
<tr>
<td>Monday</td>
<td>Wednesday</td>
<td>Sartuday</td>
</tr>
<tr>
<td>5 km</td>
<td>6 km</td>
<td>12 km</td>
</tr>
<tr>
<td> km</td>
<td> km</td>
<td> km</td>
</tr>
</tbody>
</table>
</div>
<div>
<form>
<div class="data-running">
<div>
<label for="name">Name:</label>
<input type="text" name="name" placeholder="Type your name"/>
</div>
<div>
<label for="name">Distance:</label>
<input type="text" name="name" placeholder="Type your distance"/>
</div>
<div>
<label for="name">Time:</label>
<input type="text" name="name" placeholder="Type your time"/>
</div>
<div>
<input type="submit" value="Register">
</div>
</div>
</form>
</div>
</body>
</html>