Skip to content

Commit

Permalink
golden
Browse files Browse the repository at this point in the history
  • Loading branch information
dydunec-serhii committed Mar 3, 2024
1 parent cfd5d69 commit 9dde7d8
Showing 1 changed file with 70 additions and 0 deletions.
70 changes: 70 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TRAINS OF UKRAIN</title>
</head>
<body>
<table>
<caption>table of trains</caption>
<thead>
<tr>
<th rowspan="2">number of train</th>
<th>Route</th>
<th>travel time</th>
</tr>
</thead>
<tbody>
<tr>
<td>481</td>
<td>Lviv-Kyiv</td>
<td>18:30</td>
<tr>
<tr>
<td>139</td>
<td>Mukolaiv-Strui</td>
<td>15:30</td>
</tr>
<tr>
<td>91</td>
<td>Odesa-Mariupol</td>
<td>19:00</td>
</tr>
<tr>
<td>123</td>
<td>Starui Sambir-Kropuvnuchuy</td>
<td>23:00</td>
</tr>
<tr>
<td>49</td>
<td>Lviv-Kyiv</td>
<td>0:30</td>
</tr>
</tbody>
</table>
<form>
<label for="user-name">Name</label>
<input type="text" id="user-name" name="Name" autofocus placeholder="серхіо">
<br>
<label for="last-name">Last Name</label>
<input type="text" id="last-name" name="Last Name" placeholder="рамос">
<br>
<p>Do you want buy my project ?</p>
<label for="radio">yes</label>
<input type="radio" id="radio" value="yes" name="yes">
<label for="radio">no</label>
<input type="radio" id="radio" value="no" name="yes">
<br>
<label for="user-email">User Email</label>
<input type="email" id="last-name" name="last-name" placeholder="[email protected]">
<br>
<label for="password">password</label>
<input type="password" id="user-email" name="Email" minlength="5" maxlength="10">
<br>
<button>sumbit</button>
</form>
<table>
</body>
</html>

0 comments on commit 9dde7d8

Please sign in to comment.