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
15 changes: 0 additions & 15 deletions .gitignore

This file was deleted.

11 changes: 11 additions & 0 deletions 1-1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="es">
<header>
<title>My todo list
</title> My todo list </header>
<ul>
<li>Cookies</li>
<li>Nesquick</li>
<li>Cheese</li>
</ul>
</html>
26 changes: 26 additions & 0 deletions 1-4.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="es">
<header>
<title>
Expenses
</titLe> </header>
<table>
<tr>
<th> Expense </th>
<th> Cost </th>
</tr>
<tr>
<td> Crossfit </td>
<td> $800 </td>

</tr>
<tr>
<td> University </td>
<td> $1100 </td>
</tr>
<tr>
<td> General expenses </td>
<td> $2500 </td>
</tr>
</table>
</html>
19 changes: 19 additions & 0 deletions 1-5.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="es">
<head>
<title>Image, video and sound
</titLe>
</head>
<body>
<h1>Image</h1>}
<img src="bootcamp.png" alt="bootcamp">
<h1>Video</h1>
<video width="320" height="240" controls>
<source src="videobootcamp.mp4" type="video/mp4">
</video>
<h1>Audio</h1>
<audio controls>
<source src="je veux.mp3" type="audio/mp3">
</audio>
</body>
</html>
45 changes: 45 additions & 0 deletions 1-6.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<!DOCTYPE html>
<html lang="es">
<head>
<titLe>
Form
</titLe>
<meta charset="utf-8">
<meta name="description" content="HTML page for bootcamp">
<meta name="viewport" content ="width=device-width, initial-scale=1">
</head>
<body>
<h1>Sign up</h1>
<form>
Name:
<input name="First name" type="text">
<br>
Last name:
<input name="Last name" type="text">
<br>
Email:
<input name="Email" type="Email">
<br>
Birth date:
<input name="Birth date" type="date">
<br>

Sport:
<select name="cars">
<option value="Basquetball">Basquetball</option>
<option value="Handball">Handball</option>
<option value="Soccer">Soccer</option>
<option value="Crossfit">Crossfit</option>
</select>
<br>
Write a short bio:
<br>
<textarea name="message" rows="10" cols="30">
</textarea>
<br>
<button type="submit" value="Submit">Submit</button>
<button type="reset" value="Reset">Reset</button>
<br>
</form>
</body>
</html>
100 changes: 100 additions & 0 deletions 2-1.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@

html{
background: green;
font-family: arial;
font-size: 14px;
}
.h1header{ width: 100%;
border: 15px solid blue;
padding: 15px;
margin: 15px;
text-align: center;
background: red;
font.size: 46px;}

.leftnav{
width: 15%;
border: 20px solid blue;
padding-left: 20px;
padding-right:40px;
padding-top: 300px;
padding-bottom : 300px;
margin:15px;
float: left;
text-align: center;
background: red;
font.size: 10px;
}
.middlediv{
width: 50%;
border: 20px solid blue;
padding-left: 20px;
padding-right:20px;
padding-top: 140px;
padding-bottom: 20px;
margin: 15px;
text-align: center;
float: left;
position: relative;
background: red;
}
.aside{
width: 15%;
border: 20px solid blue;
padding-left: 20px;
padding-right:20px;
padding-top: 300px;
padding-bottom : 300px;
margin:15px;
float: left;
text-align: center;
background: red;
font.size: 10px;
}
.footer{
width: 100%;
border: 20px solid blue;
padding: 20px;
margin: 20px;
text-align: center;
position: relative;
top: 740px;
background: red;
font.size: 10px;
}
.midheader{

width: 90%;
border:20px solid blue;
padding: 20px;
margin:20px;
position :relative;
right:10px;
bottom: 110px;
background: yellow;
}
.midarticle{

width: 90%;
border:20px solid blue;
padding: 20px;
margin:20px;
position :relative;
bottom:60px;
right: 10px;
background: yellow;

}
.midfooter{

width: 90%;
border:20px solid blue;
padding: 20px;
margin:20px;
position :relative;
right: 10px;
bottom:10px;
background: yellow;


}
52 changes: 52 additions & 0 deletions 2-1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<!doctype html>
<html class="no-js" lang="">
<header>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title >HEADER</title>
<h1 class="h1header">HEADER</h1>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
<link href="normalize.css" rel="normalize">
<link href="2-1.css" rel="stylesheet">


<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
</header>
<body>
<nav class="leftnav">
<h3>nav</h3>
</nav>
<div class = "middlediv">
<section>
<header class ="midheader">
<h3>header</h3>
</header>
<article class ="midarticle"><h3>article</h3></article>
<footer class ="midfooter"><h3>footer</h3></footer>
</section>
</div>
</section>
<aside class="aside">
<h3>aside</h3>
</aside>
<footer class="footer">
<h3>footer
</h3>
</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>
Binary file added bootcamp.png
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 je veux.mp3
Binary file not shown.
Loading