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
Binary file added img/chocolate-chip-cookie.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
75 changes: 75 additions & 0 deletions index1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
<!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>Part One</title>
</head>
<body>
<hgroup>
<h1>This is your first HTML page!</h1>
<h3>Seems like things are going pretty well so far</h3>
<h5>
<em>Let's add a recipe for some delicious chocolate chip cakes</em>
</h5>
</hgroup>

<section>
<p>We are going to borrow a nice picture from General Mills</p>
<figure>
<img
src="/img/chocolate-chip-cookie.jpg"
alt="chocolate-chip-cookie"
width="200px"
height="150px"
/>
</figure>
<p>Here is what the recipe calls for</p>
</section>
<section>
<article>
<p>
<strong> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Ingredients</strong>
(probably not right...)
</p>
<nav>
<ul>
<li>6 Eggs</li>
<li>2 Cups of flour</li>
<li>2 Tablespoons of vanilla extract</li>
<li>2 Teaspoons of baking powder</li>
<li>1 Cup of sugar</li>
</ul>
</nav>
</article>
</section>
<section>
<article>
<p>
<strong> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Instructions</strong> (may
or may not be correct)
</p>

<nav>
<ol type="1">
<li>Add eggs, flour and vanilla extract and mix</li>
<li>Combine with sugar and baking powder and stir</li>
<li>Eat half the cookie batter because it is delicious</li>
<li>Take the rest of the cookie batter and make cookies</li>
<li>Bake at 350 for 25 minutes</li>
<li>Enjoy!</li>
</ol>
</nav>
<hr />
</article>
</section>

<footer>
<p>
Oh you don't trust us? You want to see the actual recipe? You can view
it right <a href="#">Here</a>
</p>
</footer>
</body>
</html>
196 changes: 196 additions & 0 deletions index2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,196 @@
<!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>Part Two</title>
</head>
<body>
<header>
<p>Inside of header - let's add a navbar with some essential link</p>
<nav>
<span><a href="">Home </a></span> &nbsp;<span
><a href="">About</a></span
>
&nbsp;<span><a href="">Contact</a></span>
</nav>
</header>
<section>
<h2>
Here is the main section of our page - it consists of a new articles
</h2>
<article>
<h2>
Articles 1 - 1995 was pretty crazy year for programming languages
</h2>
<p>Don't believe me? Just check this table out:</p>
<table>
<thead >
<tr >
<th >language</th>

<th colspan="2">Designed By</th>
<th >First Approved</th>
</tr>
</thead>
<tbody>
<tr>
<td>C++</td>
<td>Bjarne Stroustrup</td>
<td>1983</td>
</tr>
<tr>
<td>Python</td>
<td>Guidon Van Rossum</td>
<td>1991</td>
</tr>
<tr>
<td>Ruby</td>
<td>Yukhiro Matsumoto ('Matz')</td>
<td rowspan="3">1995</td>
</tr>
<tr>
<td>JavaScript</td>
<td>Brendan Eich</td>

</tr>
<tr>
<td>PHP</td>
<td>Rasmus Lerdorf</td>

</tr>
</tbody>
</table>
</section>
<section>
<article>
<h3>Article 2 - Coming soon...</h3>
<h3>Contact us!</h3>
<h3>General Information</h3>
<form action="">
<label for="first-name"
>First Name
<input type="text" name="user_firstname" id="first-name" />
</label>
<br />
<label for="last-name"
>Last Name
<input type="text" name="user_lastname" id="last-name" />
</label>
<br />
<label for="email"
>Email
<input type="email" name="user_email" id="email" />
</label>
<br />
<label for="date-of-birth"
>Date Of Birth
<input type="date" name="user_dateofbirth" id="date-of-birth" onfocus="(this.type= 'date')" onblur="(this.type= 'text')"/>
</label>
</form>
<h3>Essential Questions</h3>
<p>What kind of work do you need?</p>
<form action="">
<label for="programming"
>Programming
<input
type="checkbox"
id="programming"
name="work"
value="programming-work"
/>
</label>
<br />
<label for="design"
>Design
<input
type="checkbox"
id="design"
name="work"
value="desgin-work"
/>
</label>
<br />
<label for="singing"
>Singing
<input
type="checkbox"
id="singing"
name="work"
value="singing-work"
/>
</label>
<br />
<label for="comdey"
>Comedy
<input
type="checkbox"
id="comedy"
name="work"
value="comedy-work"
/>
</label>
</form>
<p>How interested are you in our design skills?</p>
<form action="">
<label for="very low"
>Very low
<input
type="radio"
id="very low"
name="design-skills"
value="very-low-skills"
/>
</label>
<br />
<label for="low"
>Low
<input
type="radio"
id="low"
name="design-skills"
value="low-skills"
/>
</label>
<br />
<label for="medium"
>Medium
<input
type="radio"
id="medium"
name="design-skills"
value="medium-skills"
/>
</label>
<br />
<label for="high"
>High
<input
type="radio"
id="high"
name="design-skills"
value="high-skills"
/>
</label>
<br />
<label for="Very high"
>Very high
<input
type="radio"
id="very high"
name="design-skills"
value="very-high-skills"
/>
</label>
<br />
</form>

<button type="submit">Submit me!</button>
</article>
</section>
<footer>
<p>Here is our footer - let's make sure we <small> copyright &copy;</small> this!</p>
</footer>
</body>
</html>
56 changes: 56 additions & 0 deletions index3.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
<!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>Part Three</title>
</head>
<body>
<header>
<h1>Welcome Back!</h1>
</header>

<section>
<h2>Here's a great video from YouTube!</h2>

<iframe
width="560"
height="315"
src="https://www.youtube.com/embed/DqUd72pK15Y"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>
</section>
<section>
<h2>Here's some music from Spotify</h2>

<iframe
width="560"
height="315"
src="https://www.youtube.com/embed/oFxXg3XT0J4"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>
</section>
<footer>
<p>Want to stay informed? Put your info here</p>
<form action="">
<label for="email"
>Email
<input type="email" id="email" name="user_email" />
</label>
<label for="joing our mailing list">
<input
type="submit"
id="join our mailing list"
name="submit-button"
value="Join Our Mailing List!"
/>
</label>
</form>
</footer>
</body>
</html>