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
49 changes: 49 additions & 0 deletions html_one.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<title>PART ONE</title>
</head>

<body>
<header>
<h1>This is your first HTML page!</h1>
</header>
<main>
<article>
<h3>Seems like things are going pretty well so far</h3>
<small>Let's add a recipe for some delicious chocolate chip cookies</small>
<p>We are going to borrow a nice picture from General Mills</p>
<img src="https://images.unsplash.com/photo-1607478900766-efe13248b125?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=1492&q=80" alt="cupcakes" width="200">

<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 cookie batter and make cookies</li>
<li>Bake at 350 for 25 minutes</li>
<li>Enjoy!</li>
</ol>

<hr>

<footer>
Oh you don't trust us? You want to see the actual recipe? You can view it right <a href="https://unsplash.com/photos/nXKWLn8y9qE">here</a>
</footer>
</article>
</main>
</body>

</html>
48 changes: 48 additions & 0 deletions html_three.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<!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>

<h1>Welcome Back!</h1>

<section>

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

<iframe width="400" height="300" src="https://www.youtube.com/embed/9RUbS8CkZvY" 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 src="https://open.spotify.com/embed-podcast/show/4Qq4AH2YWHezet7O3j7Fq9" width="400" height="232" frameborder="0" allowtransparency="true" allow="encrypted-media"></iframe>

</section>

<br>

<form action="#">

<p>Want to stay informed? Put your info here!</p>

<label for="email">Email: </label>
<input type="email" id="email">

<input type="submit" value="Join Our Mailing List">

</form>

</body>

</html>
247 changes: 247 additions & 0 deletions html_two.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,247 @@
<!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 links</p>

<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 contains of 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>

<thead>

<tr>

<th>Language</th>
<th>Designed By</th>
<th>First Appeared</th>

</tr>

</thead>

<tbody>

<tr>

<td>C++</td>
<td>Bjane 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 rowspan="4">1995</td>

</tr>

<tr>

<td>JavaScript</td>
<td>Brendan Eich</td>

</tr>

<tr>

<td>Java</td>
<td>James Gosling</td>

</tr>

<tr>

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

</tr>

</tbody>

</table>

</article>

<article>
<h2>Article 2 - Coming soon...</h2>
</article>

<section>

<h2>Contact us!</h2>

<h2>General Information</h2>

<form action="#">

<section>

<label for="first_name">
First Name <input type="text" id="first_name">
</label>

</section>

<br>

<section>

<label for="lastt_name">
Last Name <input type="text" id="last_name">
</label>

</section>

<br>

<section>

<label for="email">
Email <input type="email" id="email">
</label>

</section>

<br>

<section>

<label for="dob">
Date Of Birth <input type="date" id="dob" >
</label>

</section>

</form>

</section>

<section>

<h2>Essential Questions</h2>

<section>
<!-- CHECKBOX SECTION -->
<form action="#">

<label>What kind of work do you need?</label>

<br>

<label for="programming">
Programming <input type="checkbox" id="programming" name="programming">
</label>

<br>

<label for="design">
Design <input type="checkbox" id="design" name="design">
</label>

<br>

<label for="singing">
Singing <input type="checkbox" id="singing" name="singing">
</label>

<br>

<label for="comedy">
Comedy <input type="checkbox" id="comedy" name="comedy">
</label>

<br><br>

<!-- RADIOBOX SECTION -->
<label>How interested are you in our design skills?</label>

<br>

<label for="very_low">
Very Low <input type="radio" id="very_low" name="interest_rate" value="very_low">
</label>

<br>

<label for="low">
Low <input type="radio" id="low" name="interest_rate" value="low">
</label>

<br>

<label for="medium">
Medium <input type="radio" id="medium" name="interest_rate" value="medium">
</label>

<br>

<label for="high">
High <input type="radio" id="high" name="interest_rate" value="high">
</label>

<br>

<label for="very_high">
Very High <input type="radio" id="very_high" name="interest_rate" value="very_high">
</label>

<br><br>

<input type="submit" value="Submit me!">

</form>

</section>

</section>

</main>

<footer>

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

</footer>

</body>

</html>
Loading