Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
73 changes: 35 additions & 38 deletions 00-HTML-CSS-basics/1.HTML/signUp.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand All @@ -8,53 +9,49 @@
</head>

<body>
<hr>

<header>
<h1>Sign Up</h1>
</header>
<hr>

<main>
<form action="#" method="POST">
<table>
<tr>
<td><label for="firstName">First Name</label></td>
<td><input type="text" name="firstName" placeholder="Ex: Matias" id="firstName" required></td>
</tr>
<tr>
<td><label for="lastName">Last Name</label></td>
<td><input type="text" name="lastName" placeholder="Ex: Simone" id="lastName" required></td>
</tr>
<tr>
<td><label for="email">Email</label></td>
<td><input type="email" name="email" placeholder="Ex: matiassimone@ex.com" id="email" required></td>
</tr>
<tr>
<td><label for="birthday">Birthday</label></td>
<td><input type="date" name="birthday" id="birthday" required></td>
</tr>
<tr>
<td><label for="sport">Favourite sport</label></td>
<td>
<select name="sport" id="sport" multiple required>
<option value="football">Football</option>
<option value="basketball">Basketball</option>
<option value="golf">Golf</option>
<option value="curling">Curling</option>
<option value="programming">Computer programming (?)</option>
<option value="others">Others</option>
</select>
</td>
</tr>
<tr>
<td><label for="bio">Biography</label></td>
<td><textarea name="bio" id="bio" cols="30" rows="10" placeholder="Write a short biography.." required></textarea></td>
</tr>
</table>

<label for="firstName">First Name</label>
<br>
<input type="text" name="firstName" placeholder="Ex: Matias" id="firstName" required>
<br><br>
<label for="lastName">Last Name</label>
<br>
<input type="text" name="lastName" placeholder="Ex: Simone" id="lastName" required>
<br><br>
<label for="email">Email</label>
<br>
<input type="email" name="email" placeholder="Ex: matiassimone@ex.com" id="email" required>
<br><br>
<label for="birthday">Birthday</label>
<br>
<input type="date" name="birthday" id="birthday" required>
<br><br>
<label for="sport">Favourite sport</label>
<br>
<select name="sport" id="sport" multiple required>
<option value="football">Football</option>
<option value="basketball">Basketball</option>
<option value="golf">Golf</option>
<option value="curling">Curling</option>
<option value="programming">Computer programming (?)</option>
<option value="others">Others</option>
</select>
<br><br>
<label for="bio">Biography</label>
<br>
<textarea name="bio" id="bio" cols="30" rows="10" placeholder="Write a short biography.." required></textarea>
<br><br>
<button type="submit">Submit</button>
<br><br>
<button type="reset">Reset</button>
</form>
<hr>
</main>
</body>

Expand Down
3 changes: 0 additions & 3 deletions 00-HTML-CSS-basics/2.CSS/FirstExercises/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@

.my-grid {
display: grid;
grid-template-columns: 0.20fr 0.80fr 0.20fr;
grid-auto-rows: 0.07fr 0.93fr 0.10fr;

grid-template-areas:
'head head head head'
'nav section section aside'
Expand Down