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
46 changes: 46 additions & 0 deletions Task-01/index.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>My First HTML Page</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre&display=swap" rel="stylesheet">
</head>
<body>
<h1>
This is your first HTML page!
</h1>
<article>
<h2>
Seems like things are going well so far</h2>
<p class="paragraph"> 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://mspsgfree.com/wp-content/uploads/2018/04/a5e741a2-4a7b-4138-89f4-6c781a28c2ff.jpg" alt="Chocolate Chip Cookie">
</article>
<article>
<p> Here is what the recipe calls for</p>
<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>1 Cup of sugar</li>
</ul>
<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>
</article>
<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>

</body>
</html>
115 changes: 115 additions & 0 deletions Task-02/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
<!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>Tables Radio Buttons and Checkboxes</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=PT+Serif&family=Roboto:wght@500&display=swap" rel="stylesheet">
</head>
<body>
<p>Inside of header- Let's add a navbar with some essemtial links
<navbar>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li><br>
<hr>
<main>
<h2>Here is the main section of our page - It consists of new articles</h2>
<section>
<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 Stoustroup</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>Bredan 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>
</section>
<section>
<h2> Article 2 - Coming soon...</h2>
</section>
<section>
<h2>Contact us!</h2>
</section>
<section>
<h2>General Information</h2>
<form>
First name <input type = "text" name = "first_name" />
<br>
Last name <input type = "text" name = "last_name" />
<br>
Email <input type = "email" name = "email" />
<br>
Date of Birth <input type = "date" name = "date_of_birth" placeholder = "mm/dd/yyyy"/>
</form>
</section>
<section>
<h2>Essential Questions</h2>
<p>What kind of work do you need?
<form>
Programming:<input type="checkbox" id="job1" name="job1" value="Programming">
<label for="job1"></label><br>
Design:<input type="checkbox" id="job2" name="job2" value="Design">
<label for="job2"></label><br>
Singing:<input type="checkbox" id="job3" name="job3" value="Singing">
<label for="job3"></label>
Comedy:<input type="checkbox" id="job4" name="job4" value="Comedy">
<label for="job4"></label>
</form>
</section>
<section>
<p>How interested are you in our design skills?
<form>
Very Low<input type="radio" id="very low" name="rating" value="very low">
<label for="male"></label><br>
Low<input type="radio" id="Low" name="rating" value="low">
<label for="female"></label><br>
Medium<input type="radio" id="medium" name="rating" value="medium">
<label for="medium"></label><br>
High<input type="radio" id="high" name="rating" value="high">
<label for="high"></label><br>
Very High<input type="radio" id="very high" name="rating" value="very high">
<label for="very high"></label><br>
<input type="submit" value="Submit">
</form>
</section>
</main>
<footer>
<p> Here is our footer - let's make sure we copyright &copy this!
</footer>
</body>
</html>
33 changes: 33 additions & 0 deletions Task-03/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<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>HTML Media</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Libre+Baskerville&family=Lora:wght@600&display=swap" rel="stylesheet">
</head>
<body>
<h1>Welcome Back!</h1>
<section>
<h2>Here's a great video from YouTube!
<div class="container">
<iframe width="250" height="200" src="https://www.youtube.com/embed/dQw4w9WgXcQ" frameborder="0" allow="picture-in-picture"></iframe>
</div>
</section>
<section>
<h2>Here's some music from Spotify!</h2>
<div class="container">
<iframe src="https://open.spotify.com/embed/track/5Fli1xRi01bvCjsZvKWro0" width="400" height="100" frameborder="2"></iframe>
</div>
</section>
<footer>
<p>Want to stay informed? Put your info here!</p>
<form>
Email: <input type="email">
<input type="submit" value="Join Our Mailing List!">
</form>
</footer>
</body>
</html>
138 changes: 0 additions & 138 deletions index.html

This file was deleted.

Loading