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

<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>html page</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="">
</head>
<body>
<h1>This is your first HTML page!</h1>
<h3>Seems like things are going pretty well so far</h3>
<h5>Let's add a recipe for some delicious chocolate chip cookies</h5>
<p>We are going to borrow a nice picture from General Mills</p>
<img src="https://images-gmi-pmc.edge-generalmills.com/9af77ec2-795c-424f-9af9-041c103a1831.jpg"
alt="Ultimate Chocolate Chip Cookies" width="300px" height="230px">
<p>Here is what the recipe calls for</p>
<ul><strong> Ingredients </strong>(<em>probably not right...</em>)
<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>(<em>may or may not be correct</em>)
<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 butter because its delicious</li>
<li>Take the rest of the cookie butter and make cookies</li>
<li>Bake at 350 for 25 minutes</li>
<li>Enjoy</li>
</ol>
<hr>
<p>Oh you don't trust us? You want to see the actual recepie? You can view it right <a href="https://www.goldmedalflour.com/recipes/ultimate-chocolate-chip-cookies/6d327e03-8388-45c3-94d2-34898977e7b3" target="_blank">here</a></p>
<script></script>
</body>
</html>
106 changes: 106 additions & 0 deletions htmlassignment2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
<!DOCTYPE <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="">
</head>
<body>
<header>
<p>Insider 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>
<hr>
</header>
<h3>Here is the main section of our page - it consists of a new article</h3>
<h3>Article 1 - 1995 was a pretty crazy year for programming languages!</h3>
<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>
<h3>Article 2 - Coming soon...</h3>
<h3>Contact us!</h3>
<h3>General Information</h3>
<div>
<label>First Name:</label>
<input type="text">
</div>
<div>
<label>Last Name:</label>
<input type="text">
</div>
<div>
<label>Email:</label>
<input type="email">
</div>
<div>
<label>Date Of Birth:</label>
<input type="date">
</div>
<div>
<h3>Essential Questions</h3>
<p>What kind of work do you need?</p>
<div>
<label>programming:</label>
<input type="checkbox">
<label>Design:</label>
<input type="checkbox">
<label>Singing:</label>
<input type="checkbox">
<label>Comedy:</label>
<input type="checkbox">
</div>
<br>
<p>How interested are you in our design skills?</p>
<p>Very Low: <input type="radio"></p>
<p>Low: <input type="radio"></p>
<p>Medium: <input type="radio"></p>
<p>High: <input type="radio"></p>
<p>Very High: <input type="radio"></p>
<input type="submit">
<footer>
<p>Here is our footer - let's make sure we copyright &copy; this!</p>
</footer>
<script></script>
</body>
</html>
32 changes: 32 additions & 0 deletions htmlassignment3.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!DOCTYPE <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="">
</head>
<body>
<h3>Welcome Back!</h3>
<h4>Here's a great video from YouTube!</h4>
<iframe width="300px" height="250px" src="https://www.youtube.com/embed/ZJM4AQSbZDk?start=17"
frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope;
picture-in-picture" allowfullscreen></iframe>

<h3>Here's some music from Spotify</h3>
<iframe src="https://open.spotify.com/embed/track/1KSz0dMTPwRq9OqLkNxcfd"
width="300" height="80" frameborder="0" allowtransparency="true"
allow="encrypted-media"></iframe>

<p>Want to stay informed? Put your info here!</p>
<div>
<label>Email:</label>
<input type="email">
<input type="button" value="Join Our Mailing List">
</div>

<script></script>
</body>
</html>
138 changes: 0 additions & 138 deletions index.html

This file was deleted.

Loading