Skip to content
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

Added files via upload #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
Binary file added DogSpaguetti.mp4
Binary file not shown.
Binary file added DogeAdvise.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added UnfinishedSympathy.mp3
Binary file not shown.
45 changes: 45 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<!DOCTYPE html>
<html>
<head><title>My todo list</title></head>
<ul>
<li>
<p>Wake up</p>
</li>
<li>
<p>Take a bath</p>
</li>
<li>
<p>Have a breakfast</p>
</li>
<li>
<p>Go to ORT</p>
</li>
<li>
<p>Come back to home</p>
</li>
<li>
<p>Study, some days in the week I have to go to English classes</p>
</li>
<li>
<p>Have lunch</p>
</li>
<li>
<p>Keep studying</p>
</li>
<li>
<p>Go to work</p>
</li>
<li>
<p>Come back to home</p>
</li>
<li>
<p>Have dinner</p>
</li>
<li>
<p>Keep studying</p>
</li>
<li>
<p>Maybe sleep</p>
</li>
</ul>
</html>
28 changes: 28 additions & 0 deletions index2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html>
<head><title>My Expenses</title></head>
<title>My expenses</title>
<table border="1">
<tr>
<th>Type</th>
<th>Amount</th>
<th>Description</th>
</tr>
<tr>
<td>Games</td>
<td>$12</td>
<td>Humble bundle</td>
</tr>
<tr>
<td>Study</td>
<td>$200</td>
<td>English lessons</td>
</tr>
<tr>
<td>Food</td>
<td>$15</td>
<td>Dinner with gf</td>
</tr>
</table>

</html>
20 changes: 20 additions & 0 deletions index3.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<div>
<h1>An image</h1>
<img height="315" width="520" alt="Doge, folow your dreams" src="DogeAdvise.jpg">
</div>
<div>
<h1>A video</h1>
<video height="320" width"215" alt="Dog eating spaguetti" controls="">
<source src="DogSpaguetti.mp4" type="video/mp4">
</video>

</div>
<div>
<h1>An audio</h1>
<audio controls>
<source src="UnfinishedSympathy.mp3" type="audio/mpeg">
</audio>
</div>
</html>
28 changes: 28 additions & 0 deletions index4.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@

<html>
<head>
<title>Sign up form</title>
</head>
<body>
<form>
<label for="txt_name">First name: </label>
<input type="text" id="txt_name" required></input><br>
<label for="txt_lastName">Last name: </label>
<input type="text" id="txt_lastName" required></input><br>
<label for="txt_email">Email: </label>
<input type="email" id="txt_email" required></input><br>
<label for="dte_birthday">Birthday: </label>
<input type="date" id="dte_birthday" required></input><br>
<label for=slc_favSport>Select your favourite sport: </label>
<select id="slc_favSport" required ><option></option><option>Football</option><option>Tennis</option><option>Curling</option></select>
</select><br>
<label id="txt_bioDesc">Small bio: </label><br>
<textarea rows="5" cols="60" Id="txt_bioDesc"></textarea required><br>

<button id="btn_submit" type="button">Submit</button>
<button id="btn_clear" type="button">Clear all</button>
</form>


</body>
</html>