Skip to content

Feature/0009 day 0 #28

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
Empty file added src/week1/day0/.txt
Empty file.
40 changes: 40 additions & 0 deletions src/week1/day0/expenses.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Expenses</title>
</head>
<body>
<header>
<h1>Expenses</h1>
</header>
<table>
<thead>
<tr>
<th>Nombre</th>
<th>Empresa</th>
<th>Monto a pagar</th>
</tr>
</thead>
<tbody>
<tr>
<td>Luz</td>
<td>Edea</td>
<td>5000</td>
</tr>
<tr>
<td>Gas</td>
<td>Gas Pampeana</td>
<td>8000</td>
</tr>
<tr>
<td>Celular</td>
<td>Personal</td>
<td>1000</td>
</tr>
</tbody>
</table>
</body>
</html>
Binary file added src/week1/day0/lion-3576045_960_720.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions src/week1/day0/multimedia.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Multimedia</title>
</head>
<body>
<header>
<h1>Multimedia</h1>
</header>
<audio
autoplay
controls
src="https://file-examples.com/storage/fe7589721d63762859d6962/2017/11/file_example_MP3_700KB.mp3"
></audio>
<video
controls
height="100%"
src="https://www.learningcontainer.com/wp-content/uploads/2020/05/sample-mp4-file.mp4"
></video>
<img src="https://cdn.pixabay.com/photo/2018/07/31/22/08/lion-3576045_960_720.jpg" alt="Lion" width="460" height="345">
</body>
</html>
55 changes: 55 additions & 0 deletions src/week1/day0/sign-up.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sign up</title>
</head>

<body>
<header>
<h1>Sign up</h1>
</header>
<main>
<form autocomplete="off">
<div>
<label for="first-name">First name</label>
<input required type="text" name="first-name" />
</div>

<div>
<label for="last-name">Last name</label>
<input required type="text" name="last-name" />
</div>
<div>
<label for="email">Email</label>
<input required type="email" name="email" />
</div>
<div>
<label for="birthday">Birthday</label>
<input required type="date" name="birthday" max="2022-11-17"/>
</div>
<div>
<label for="favourite-sport">Favourite sport</label>
<select required name="favourite-sport">
<option value="">seleccione..</option>
<option value="hockey">Hockey</option>
<option value="futbol">Futbol</option>
</select>
</div>

<textarea
required
maxlength="256"
name="Bio"
cols="30"
rows="10"
></textarea>

<button id="submit-button" type="submit">Submit</button>
<button id="clear-button" type="button">Clear</button>
</form>
</main>
</body>
</html>
22 changes: 22 additions & 0 deletions src/week1/day0/todo-list.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My todo list</title>
</head>
<body>
<header>
<h1>My todo list</h1>
</header>
<main>
<ul>
<li>Study</li>
<li><a>Pick up Felipe</a></li>
<li><a>Grosery store</a></li>
<li><a>Make dinner</a></li>
</ul>
</main>
</body>
</html>