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

Topic0 #103

Open
wants to merge 5 commits 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
33 changes: 33 additions & 0 deletions 00-HTML-CSS-basics/Exercise 1/form.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<form action="POST">
Name:
<input type="text" placeholder="name" required><br>
Lastname:
<input type="text" placeholder="lastname" required><br>
Birthday:
<input type="date" name="" id="" required><br>
Email:
<input type="email" name="" id="" required><br>

Select favorite sport
<select name="sports">
<option value="football">Football</option>
<option value="basket">Basket</option>
<option value="voley">Voley</option>
<option value="rugby">Rugby</option>
</select><br>
Please, add a little bio<br>
<textarea name="bio" cols="30" rows="10"></textarea><br>
<input type="submit" value="submit">
<input type="reset" value="reset">
</form>
</body>
</html>
19 changes: 19 additions & 0 deletions 00-HTML-CSS-basics/Exercise 1/index.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="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Exercise 1 navigation</title>
</head>
<body>
<nav>
<ul>
<li><a href="todo-list.html">List</a></li>
<li><a href="table.html">Table</a></li>
<li><a href="media.html">Media files</a></li>
<li><a href="form.html">Media files</a></li>
</ul>
</nav>
</body>
</html>
24 changes: 24 additions & 0 deletions 00-HTML-CSS-basics/Exercise 1/media.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<header>Media: image, video, audio</header>
<video width="400" controls>
<source src=http://techslides.com/demos/sample-videos/small.webm type=video/webm>
<source src=http://techslides.com/demos/sample-videos/small.ogv type=video/ogg>
<source src=http://techslides.com/demos/sample-videos/small.mp4 type=video/mp4>
<source src=http://techslides.com/demos/sample-videos/small.3gp type=video/3gp>
</video>
<audio controls>
<source src="http://www.hochmuth.com/mp3/Tchaikovsky_Nocturne__orch.mp3" type="audio/ogg">

Your browser does not support the audio element.
</audio>
<img width="400" src="http://footage.framepool.com/shotimg/qf/443439483-flamenco-americano-curacao-plumaje-zoologico.jpg"/>
</body>
</html>
29 changes: 29 additions & 0 deletions 00-HTML-CSS-basics/Exercise 1/table.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<header>Expense table</header>
<table >
<tr>
<th>Date</th>
<th>Item</th>
<th>Expense</th>
</tr>
<tr>
<td>22/04</td>
<td>Gas</td>
<td>$500</td>
</tr>
<tr>
<td>20/04</td>
<td>Food</td>
<td>$350</td>
</tr>
</table>
</body>
</html>
17 changes: 17 additions & 0 deletions 00-HTML-CSS-basics/Exercise 1/todo-list.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<header>My todo list!</header>
<ul>
<li>Learn HTML</li>
<li>Exercise HTML</li>
<li>Learn CSS</li>
</ul>
</body>
</html>
36 changes: 36 additions & 0 deletions 00-HTML-CSS-basics/Exercise 2/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="normalize.css">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<header class="header">
Header
</header>
<nav class="navigation">
Nav
</nav>
<section class="content">
<header>
article header
</header>
<article>
article body Lorem ipsum dolor sit amet consectetur adipisicing elit. Vitae ab doloremque libero perferendis hic. Est aperiam, inventore quo reiciendis, temporibus, tenetur aspernatur maiores vitae quasi iusto praesentium dicta cum neque itaque sint voluptates exercitationem? Atque blanditiis similique dolorem cupiditate architecto?
</article>
<footer>
article footer
</footer>
</section>
<aside class="sidebar">
Aside
</aside>
<footer class="footer">
Footer
</footer>
</body>
</html>
Loading