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
138 changes: 0 additions & 138 deletions index.html

This file was deleted.

Binary file added part_one/image/cookies.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
37 changes: 37 additions & 0 deletions part_one/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<!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>Document</title>
</head>
<body>
<h1>This is your first HTML page!</h1>
<h2>Seems like things are going pretty well so far</h2>
<h3>Let's add a recipe for some delicious chocolate chip cookies</h3>
<p>We're going to borrow a nice picture from a General Mills</p>

<img src="./image/cookies.jpg" alt="cookies">
<p>Here is what the recipe calls for</p>
<ul>
<strong>Ingredients</strong>(probably not right...)
<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>
<ol>
<strong>Instructions</strong> (may or may not be correct)
<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 cookies batter and make cookies</li>
<li>Bake at 350 for 25 minutes</li>
<li>Enjoy!</li>
</ol>
<hr>
Oh you don't trust us? You want to see the actual recipe? You can view it right <a href="https://www.allrecipes.com/">Here</a>
</body>
</html>
32 changes: 32 additions & 0 deletions part_three/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!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>Document</title>
</head>
<body>
<header>
<h1>Welcome Back!</h1>
</header>
<main>
<h2>Here's a great video from YouTube!</h2>

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


<iframe src="https://open.spotify.com/embed/track/1diS6nkxMQc3wwC4G1j0bh" width="300" height="80" frameborder="0" allowtransparency="true" allow="encrypted-media"></iframe>

<p>Want to stay informed? Put your info here!</p>
<form action="#">
<label for="email">Email:</label>
<input type="email" name="email" id="email">
<button type="submit">Join Our Mailing List!</button>
</form>
</main>
</body>
</html>
145 changes: 145 additions & 0 deletions part_two/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,145 @@
<!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>Document</title>
</head>
<body>
<header>
<nav>
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Contact</a>
</nav>
</header>
<main>
<h2>Here is the main section of our page - it consists of a new article</h2>
<article>
<p>Article 1 - 1995 was a pretty crazy year for programming!</p>
<p>Don't believe me? Just check this table out:</p>
<table>
<thead>
<tr>
<th>Language</th>
<th>Designed By</th>
<th>First Appeared</th>
<th>Paradigm</th>
</tr>
</thead>
<tbody>
<tr>
<td>C++</td>
<td>Bjarne Stroustrup</td>
<td>1983</td>
<td>Object-oriented</td>
</tr>
<tr>
<td>Python</td>
<td>Guido van Rossum</td>
<td>1991</td>
<td rowspan="3">Multi paradigm</td>
</tr>
<tr>
<td>Ruby</td>
<td>Yukihiro Matsumoto("Matz")</td>
<td>1995</td>
</tr>
<tr>
<td>JavaScript</td>
<td>Brendan Eich</td>
<td>1995</td>
</tr>
<tr>
<td>Java</td>
<td>James Gosling</td>
<td>1995</td>
<td>Object-oriented</td>
</tr>
<tr>
<td>PHP</td>
<td>Rasmus Lerdorf</td>
<td>1995</td>
<td>Multi paradigm</td>
</tr>
<tr>
<td colspan="4">Total 6</td>
</tr>
</tbody>
</table>
</article>

<article>
<h2>Article 2 - Coming soon...</h2>
<h2>Contact us!</h2>
<h2>General Information</h2>
<form action="#">
<div>
<label for="f-name">First Name</label>
<input type="text" name="first_name" id="f-name">
</div>
<div>
<label for="l-name">Last Name</label>
<input type="text" name="last_name" id="l-name">
</div>
<div>
<label for="email">Email</label>
<input type="email" name="email" id="email">
</div>
<div>
<label for="date">Date of Birth</label>
<input type="date" name="dob" id="date">
</div>
</form>

<h2>Essential Questions</h2>

<p>What kind of work do you need?</p>
<form action="#">
<div>
<label for="program">Programming:</label>
<input type="checkbox" name="program" id="program">
</div>
<div>
<lable for="design">Design:</lable>
<input type="checkbox" name="designer" id="design">
</div>
<div>
<label for="sing">Singing:</label>
<input type="checkbox" name="sing" id="sing">
</div>
<div>
<label for="comedy">Comedy:</label>
<input type="checkbox" name="comedy" id="comedy">
</div>
</form>

<p> How interested are you in our design skills?</p>
<form action="#">
<div>
<label for="very-low">Very Low</label>
<input type="checkbox" name="very_low" id="very-low">
</div>
<div>
<label for="low">Low</label>
<input type="checkbox" name="low" id="low">
</div>
<div>
<label for="medium">Medium</label>
<input type="checkbox" name="Medium" id="medium">
</div>
<div>
<label for="very-high">Very High</label>
<input type="checkbox" name="very_high" id="very-high">
</div>
<button type="submit">Submit</button>
</form>
</article>
</main>

<footer>
<p>Here is our footer - let's make sure we copyright &copy; this!</p>
</footer>
</body>
</html>
Loading