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
44 changes: 44 additions & 0 deletions cookies.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<!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>HOW TO MAKE COOKIES PAGE</title>
</head>
<body>
<header>
<h1>This is my first HTML page!</h1>
<h2>Seems like things are going pretty well</h2>
<h4>Let's add a recipe for some delicious chocolate chip cookies</h4>
<h3>We're going to borrow a nice picture online</h3>
</header>
<img src="https://th.bing.com/th/id/OIP.R_5KmdATkYqAgDOeEoObNAAAAA?pid=ImgDet&rs=1" alt="cookies">
<!-- ORDERED AND UNORDERED LIST -->
<main>
<p>Here is what the recipe calls for</p>
<ul><strong>Ingredients</strong><em>(probabily not right....)</em>
<li>6 Eggs</li>
<li>2 Cups of flour</li>
<li>2 Tablesppons of vanilla extract</li>
<li>2 Teaspoons of baking powder</li>
<li>1 Cup of sugar</li>
</ul>
<br>
<ol><p><strong>Instructions</strong><em>(may or may not be correct)</em></p>
<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>
<br>
</main>
<hr>
<!-- FOOTER -->
<footer>
<p>Oh you don't trust me? You want to see the actual recipe? You can view it right <a href="https://www.pillsbury.com/recipes/dish-type/cookies" target="_blank">Here</a></p>
</footer>
</body>
</html>
112 changes: 112 additions & 0 deletions formtable.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
<!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>INTEREST AND PERSONAL DETAILS</title>
</head>
<body>
<header>
<h2><strong>Here is the main section of our page-it consists of new articles </strong></h2>
</header>
<main>
<!-- TABLE EXERCISE -->
<article>
<h1><strong>Article 1-1995 was a pretty crazy year for programming language!</strong></h1>
<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>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 Matsunmoto ('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>
</tbody>
</table>
</article>
<!-- FORM EXERCISE -->
<article>
<section>
<h1><strong>Article 2 - Coming soon....</strong></h1>
<h1><strong>Contact us!</strong></h1>
<h1><strong>General Information</strong></h1>
<form action="">
<label for="first_name">First Name</label>
<input type="text" name="First Name"><br>
<label for="last_name">Last Name</label>
<input type="text" name="last Name"><br>
<label for="email">Email</label>
<input type="email" name="email"><br>
<label for="date">Date of Birth</label>
<input type="date" name="date">
</form>
</section>
<section>
<h1><strong>Essential Questions</strong></h1>
<form action="">What kind of work do you need? <br>
<label for="prog_lang">Programming:</label>
<input type="radio" name="First Name"><br>
<label for="design">Design:</label>
<input type="radio" name="design"><br>
<label for="singg">Singing:</label>
<input type="radio" name="sing"><br>
<label for="laugh">Comedy:</label>
<input type="radio" name="laff"><br><br>
</form>
</section>
<section>
<form action="">How interested are you in our design skills? <br>
<label for="guage">Very Low</label>
<input type="checkbox" name="design"><br>
<label for="guage">Low</label>
<input type="checkbox" name="design"><br>
<label for="guage">Medium</label>
<input type="checkbox" name="design"><br>
<label for="guage">High</label>
<input type="checkbox" name="design"><br>
<label for="guage">Very High</label>
<input type="checkbox" name="design"><br><br>
<input type="button" value="submit me">
</form>
</section>
</article>
</main><br><br>
<!-- FOOTER -->
<footer>
<p>Here is our footer-let's make sure we copyright &copy; this!</p>
</footer>
</body>
</html>
146 changes: 146 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,149 @@

<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" href="styles.css">
</head>

<body>
<table class="table">
<thead>
<tr>
<th>Full Name</th>
<th>Favourite Artist</th>
<th>State of Origin</th>
<th>Number of Siblings</th>
<th>Gender</th>
</tr>
</thead>
<tbody>
<!-- first person -->
<tr>
<td>Adewumi Adeyemo</td>
<td>Angelique Kidjo</td>
<td>Oyo</td>
<td>8</td>
<td><a class="btn btn__male">Male</a></td>
</tr>
<!-- second person -->
<tr>
<td>Gabriel Kayode</td>
<td>Asa</td>
<td>Oyo</td>
<td>5</td>
<td><a class="btn btn__male">Male</a></td>
</tr>
<!-- third person -->
<tr>
<td>Efosa Odia</td>
<td>Sinach</td>
<td>Edo</td>
<td>3</td>
<td><a class="btn btn__male">Male</a></td>
</tr>
<!-- fourth person -->
<tr>
<td>Akintunde Alabi</td>
<td>Vic O</td>
<td>Osun</td>
<td>2</td>
<td><a class="btn btn__male">Male</a></td>
</tr>
<!-- fifth person -->
<tr>
<td>Emmanuel Oderemi</td>
<td>Johnny Drille</td>
<td>Ogun</td>
<td>3</td>
<td><a class="btn btn__male">Male</a></td>
</tr>
<!-- sixth person -->
<tr>
<td>Olamiji Badmos</td>
<td>Simi</td>
<td>Oyo</td>
<td>4</td>
<td><a class="btn btn__female">Female</a></td>
</tr>
<!-- seventh person -->
<tr>
<td>Kareem Johnbelieve</td>
<td>Alec Benjamin</td>
<td>Kogi state</td>
<td>3</td>
<td><a class="btn btn__male">Male</a></td>
</tr>
<!-- eighth person -->
<tr>
<td>Matthew Omolewa</td>
<td>Ron Kenoly</td>
<td>Ekiti</td>
<td>3</td>
<td><a class="btn btn__male">Male</a></td>
</tr>
<!-- fourth person -->
<tr>
<td>Adebayo Seun</td>
<td>Wizkid</td>
<td>Oyo state</td>
<td>3</td>
<td><a class="btn btn__male">Male</a></td>
</tr>
<!--ten person-->
<td>Tahiru Tajudin Abdullahi</td>
<td>idris</td>
<td>kogi</td>
<td>7</td>
<td><a class="btn btn__male">Male</a></td>
</tr>
<!-- eleventh person -->
<tr>
<td>Badmus Adeshina</td>
<td>Falz</td>
<td>Lagos state</td>
<td>3</td>
<td><a class="btn btn__male">Male</a></td>
</tr>
<!-- twelfth person -->
<tr>
<td>Olufolahan Tubi</td>
<td>Brayn Adams</td>
<td>Oyo State</td>
<td>1</td>
<td><a class="btn btn__male">Male</a></td>
</tr>
<!-- thirteenth person -->
<tr>
<td>Ndibe Chinonso</td>
<td>Lil Wayne</td>
<td>Imo State</td>
<td>3</td>
<td><a class="btn btn__male">Male</a></td>
</tr>
<!-- fourteenth person -->
<tr>
<td>Oru Chukwuemeka.E</td>
<td>Davido</td>
<td>Abia State</td>
<td>6</td>
<td><a class="btn btn__male">male</a></td>
</tr>
<!-- fifteenth person -->
<tr>
<td>Olatunji Oluwapelumi Samson</td>
<td>Chris Brown</td>
<td>Osun</td>
<td>1</td>
<td><a class="btn btn__male">Male</a></td>
</tr>
</table>
</body>

</html>
=======
<!DOCTYPE html>
<html>

Expand Down
32 changes: 32 additions & 0 deletions videoin.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>VIDEO</title>
</head>
<body>
<header>
<h1><strong>Welcome Back!</strong></h1>
<h2><strong>Here's a great video from YouTube!</strong></h2>
</header>
<main>
<div>
<iframe src="https://www.youtube.com/embed/tgbNymZ7vqY" height="500" width="1000"></iframe>
</div>
<h2><strong>Here's clips from Youtube about SCP</strong></h2>
<div>
<iframe width="1000" height="500" src="https://www.youtube.com/embed/ZbVcG8_0bzY" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</main><br><br>
<footer>
<p>Want to stay informed? Put your info here!</p>
<form action="">
<label for="">Email:</label>
<input type="email">
<button>Join Our Mailing List</button>
</form>
</footer>
</body>
</html>