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.

46 changes: 46 additions & 0 deletions part_one.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<!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>Assignment - Part One</title>
</head>
<body>
<main>
<h1>This is your first HTML page!</h1>
<h4>Seems like things are going pretty well so far</h4>
<p>let's add a recipe for some delicious chocolate chip cookies</p>

<p>We're going to borrow a nice picture from General Mills</p>
<img src="https://handletheheat.com/wp-content/uploads/2018/02/BAKERY-STYLE-CHOCOLATE-CHIP-COOKIES-9.jpg" alt="image of Chocolate Chip cookies" width="200">
<p>Here is what the recipe calls for:</p>
<div>
<p><strong>Ingredients</strong> (probably not right...)</p>
<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>
</div>
<div>
<p><strong>Instructions</strong> (may or may not be correct)</p>
<ol>
<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>
</div>
</main>
<footer>
<hr>
<p>Oh you don't trust us? You want to see the actual recipe? You can view it right <a href="#">here</a></p>
<hr>
</footer>
</body>
</html>
53 changes: 53 additions & 0 deletions part_three.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<!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>Assignment - Part Three</title>
</head>
<body>
<h1>Welcome Back!</h1>
<div>
<h4>Here's a great video from Youtube</h4>
<iframe width="200" height="200" src="https://www.youtube.com/embed/TfiYWaeAcRw" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div>
<h4>Here's some music from spotify</h4>
<iframe src="https://open.spotify.com/embed/track/6xWyh38rJVIA699Dp1zgMu" width="500"
height="100" frameborder="0" allowtransparency="true" allow="encrypted-media"></iframe>
</div>
<div>
<p>Want to stay informed? Put your info here</p>
<form action="#">
<label for="email">Email:</label>
<input type="email" id="email" name="email">
<input type="submit" value="Join Our Mailing List">
</form>
</div>
<div>
<h2>Total savings for the first quarter of the year 2021</h2>
<table border="1">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td>$80</td>
</tr>
<tr>
<td>March</td>
<td>$180</td>
</tr>
<tr>
<td colspan="2">Sum: $360</td>
</tr>
</table>
</div>
</body>
</html>
110 changes: 110 additions & 0 deletions part_two.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
<!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>Assignment - Part Two</title>
</head>
<body>
<header>
<nav>
<ul>
<li style="display:inline;"><a href="#">Home</a></li>
<li style="display:inline;"><a href="#">About</a></li>
<li style="display:inline;"><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<hr>
<main>
<h2>Here is the main section of our page - it consists of a new articles</h2>
<article>
<h2>Article 1 - 1995 was a pretty crazy year for programming languages!</h2>
<p>Don't believe me? Just check this table out:</p>
<table>
<tr>
<th>Language</th>
<th>Designed By</th>
<th>First Appeared</th>
</tr>
<tr>
<td>C++</td>
<td>Bjarne Stroustrup</td>
<td>1983</td>
</tr>
<tr>
<td>Python</td>
<td>Guido van Rossum</td>
<td>1991</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>
</tr>
<tr>
<td>PHP</td>
<td>Rasmus Lerdorf</td>
<td>1995</td>
</tr>
</table>
</article>
<article>
<h2>Article 2 - Coming soon...</h2>
<h2>Contact us!</h2>
<h2>General Information</h2>
<form action="#">
<label for="firstName">First Name</label>
<input type="text" id="firstName" name="fname"><br>
<label for="lastName">Last Name</label>
<input type="text" id="lastName" name="lname"><br>
<label for="email">Email</label>
<input type="email" id="email" name="email"><br>
<label for="DOB">Date of Birth</label>
<input type="date" id="DOB" name="date">
<br>
<h2>Essential Questions</h2>
<div>
<p>What kind of work do you need?</p>
<label for="programming">Programming</label>
<input type="checkbox" name="work" id="programming"><br>
<label for="design">Design</label>
<input type="checkbox" name="work" id="design"><br>
<label for="singing">Singing</label>
<input type="checkbox" name="work" id="singing"><br>
<label for="comedy">Comedy</label>
<input type="checkbox" name="work" id="comedy">
</div>
<div>
<p>How interested are you in our design skills?</p>
<label for="vLow">Very Low</label>
<input type="radio" name="design" id="vLow"><br>
<label for="low">Low</label>
<input type="radio" name="design" id="low"><br>
<label for="medium">Medium</label>
<input type="radio" name="design" id="medium"><br>
<label for="high">High</label>
<input type="radio" name="design" id="high"><br>
<label for="vHigh">Very High</label>
<input type="radio" name="design" id="vHigh">
</div>
<input type="submit" value="Submit Me!">
</form>
</article>
</main>
<footer>
<p>Here is our footer - &copy; Victor Limited 2021 </p>
</footer>
</body>
</html>
Loading