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
49 changes: 49 additions & 0 deletions Topic 0/Index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Index</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/normalize.css" type="text/css">
<link rel="stylesheet" href="css/style.css" type="text/css">
</head>
<body>
<header class="header">
Header
</header>
<nav class="navigation">
Navigation
</nav>
<section class="content">
<header>
Header
</header>
<article>
Article
</article>
<footer>
Footer
</footer>
</section>
<aside class="sidebar">
Sidebar
</aside>
<footer class="footer">
Footer
</footer>

<script src="js/vendor/modernizr-{{MODERNIZR_VERSION}}.min.js"></script>
<script src="https://code.jquery.com/jquery-{{JQUERY_VERSION}}.min.js" integrity="{{JQUERY_SRI_HASH}}" crossorigin="anonymous"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-{{JQUERY_VERSION}}.min.js"><\/script>')</script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>

<script>
window.ga = function () { ga.q.push(arguments) }; ga.q = []; ga.l = +new Date;
ga('create', 'UA-XXXXX-Y', 'auto'); ga('send', 'pageview')
</script>
<script src="https://www.google-analytics.com/analytics.js" async defer></script>
</body>
</html>
20 changes: 20 additions & 0 deletions Topic 0/Media.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="author" content="LeandroVilches">
<meta name="keywords" content="Laika,Sputnik,Soviet,Space">
<meta name="description" content="Soviet Space Program">
<meta name="viewport" content="width=device-width , initial-scale=1">
<title>Media</title>
</head>
<body>
<header align="center">Media</header>
<h4>First animal to orbit the Earth</h4>
<img src="files/Laika.jpg" alt="laika" height="300" width="350">
<h4>Sputnik 1</h4>
<video src="files/Sputnik.mp4" type="video/mp4" controls height="500" width="700" poster="files/sputnik1.jpg"></video>
<h4>Anthem of the Soviet Space Program</h4>
<audio src="files/Anthem.mp3" type="audio/mp3" controls> Your browser does not support the audio element</audio>
</body>
</html>
55 changes: 55 additions & 0 deletions Topic 0/MyExpenses.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 name="author" content="LeandroVilches">
<meta name="keywords" content="tables,expenses,amount,bills">
<meta name="description" content="My monthly expenses and how I should shorten them">
<meta name="viewport" content="width=device-width , initial-scale=1">
<title>My Expenses</title>
</head>
<body>
<h2 align=center>My Expenses</h2>
<div align="center">
<table border="3">
<caption>Monthly Expenses</caption>
<tr>
<th>Necessary</th>
<th>Unnecessary</th>
</tr>
<td>
<table border="1">
<tr>
<th>Description</th>
<th>Amount</th>
</tr>
<tr>
<td>Electricity</td>
<td>$700</td>
</tr>
<tr>
<td>Gas</td>
<td>$1000</td>
</tr>
</table>
</td>
<td>
<table border="1">
<tr>
<th>Description</th>
<th>Ammount</th>
</tr>
<tr>
<td>Books</td>
<td>$800</td>
</tr>
<tr>
<td>Videogames</td>
<td>$600</td>
</tr>
</table>
</td>
</table>
</div>
</body>
</html>
62 changes: 62 additions & 0 deletions Topic 0/SignUp.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="author" content="Leandro Vilches">
<meta name="keywords" content="Form, SignUp,Submit">
<meta name="description" content="just a short form for users to complete">
<meta name="viewport" content="width=device-width , initial-scale=1">
<title>Sign Up</title>
</head>
<body>
<header align="center">Sign Up</header>
<table border="1">
<caption>Personal Information<caption>
<form method="post">
<tr>
<td>First Name:<input type="text" name="Name" required maxlength="50" size="60"></td>
</tr>
<tr>
<td>Last Name:<input type="text" name="LastN" required maxlength="50" size="60"></td>
</tr>
<tr>
<td>E-mail:<input type="email" name="mail" requiered size="60"></td>
</tr>
<tr>
<td>Birthday:<input type="date" name="BDay" requiered></td>
</tr>
<tr>
<td>
Favourite Sport(s):
<select name="sports" size="5" multiple>
<option disabled selected>----Select----</option>
<option value="Football">Football</option>
<option value="Basketball">Basketball</option>
<option value="Volleball">Volleyball</option>
<option value="Handball">Handball</option>
<option value="Hockey">Hockey</option>
<option value="Tennis">Tennis</option>
</select>
</td>
</tr>
<tr>
<td>
About me:<textarea name="Bio" placeholder="Write Something!" cols="60" rows="5"></textarea>
</td>
</tr>
<tr>
<table>
<tr>
<td>
<input name="OK" type="submit" value="Submit"/>
</td>
<td>
<input name="Reset" type="reset" value="Restore"/>
</td>
</tr>
</table>
</tr>
</form>
</table>
</body>
</html>
19 changes: 19 additions & 0 deletions Topic 0/ToDoList.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="author" content="LeandroVilches">
<meta name ="keywords" content="lists,chores,tasks">
<meta name="description" content="Just a list of small tasks that define my daily life">
<meta name="viewport" content="width=device-width , initial-scale=1">
<title>To do list</title>
</head>
<body>
<header>My to do list</header>
<ul>
<li>drink coffee</li>
<li>play videogames</li>
<li>do some coding</li>
</ul>
</body>
</html>
Loading