Skip to content
Open

Wk1d2 #142

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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
week 1 day 2 assignment
134 changes: 134 additions & 0 deletions html2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,134 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>My second HTML page!</title>
</head>
<header>
<p>Inside of header let's add a nav bar with some essential links</p>
<a href="#">Home</a> <a href="#">About</a> <a href="#">Contact</a>
</header>
<hr>
<body>
<h2>Here is the main section of our page- it consists of a news article</h2>

<h2>Article 1 - 1995 was a pretty crazy year for programming languages!</h2>
<p>Don't believe me check this table out:</p>

<p>TABLE</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>1993</td>
</tr>
<tr>
<td>Python</td>
<td>Guido van Rossom</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>

</tbody>
</table>

<p> Here's a table utilizing joinings (column span) to record data</p>
<table>
<thead>
<tr>
<th>Language</th>
<th colspan="2">Designed by</th>
<th colspan="2">Year</th>
</tr>
</thead>
<tbody>
<tr>
<td>C</td>
<td>Dennis Ritchie</td>
<td>Ken Thompson</td>
<td>1969</td>
<td>1973</td>
</tr>
</tbody>
</table>

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

<h2>Contact us!</h2>

<h2>General Information</h2>
<form>
<label for="firstName">First Name</label> <input id="firstName" type="text">
<br>
<label for="lastName">Last Name</label> <input id="lastName" type="text">
<br>
<label for="email">Email</label> <input id="Email" type="text">
<br>
<label for="dateOfBirth">Date Of Birth</label> <input id="dateOfBirth" type="text">
</form>

<h2>General Information</h2>
<p>What kind of work do you need?</p>
<form>
<label for="programming">Programming:</label> <input id="programming" type="button">
<br>
<label for="design">Design:</label> <input id="design" type="button">
<br>
<label for="singing">Singing:</label> <input id="singing" type="button">
<br>
<label for="comedy">Comedy:</label> <input id="comedy" type="button">
</form>

<p>How interested are you in our design skills?</p>
<form>
<label for="veryLow">Very Low</label> <input id="veryLow" type="button">
<br>
<label for="low">Low</label> <input id="low" type="button">
<br>
<label for="medium">Medium</label> <input id="medium" type="button">
<br>
<label for="high">High</label> <input id="high" type="button">
<br>
<label for="veryHigh">Very High</label> <input id="veryHigh" type="button">
<br>
<input placeholder="Submit me!" type="submit" id="submit">
</form>

</body>

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






</html>
41 changes: 41 additions & 0 deletions html3.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>My third html page!</title>
</head>
<body>
<h1>WWelcome Back!</h1>
<h2>Here's a geat video from Youtube!</h2>

<iframe src="https://player.vimeo.com/video/518009728" width="640" height="360" frameborder="0" fullscreen; " allowfullscreen></iframe>

<h2>Here's some music from spotify (Not really though!)</h2>
<iframe frameborder="0"
width="400"
height="200" src="https://drive.google.com/file/d/1owQTQMJ2tRnHoe-76g3Bv3C94FEhph3S/preview" controls type="audio/mp3"></iframe>


<p>Want to stay informed? Put your info here!</p>
<form>
<label for="name">name</label> <input type="text" placeholder="Name"></input>
<br>
<label for="email">Email</label> <input id="email" type="text" placeholder="Email"></input>
<br>
<label for="number">Phone Number</label> <input id="number" type="text" placeholder="Phone number"></input>
<br>
<label for="date">Date</label> <input id="date" type="text" placeholder="Date" onfocus="(this.type='date')" onblur="(this.type='text')" ></input>
<br>

</form>









</body>
</html>
166 changes: 38 additions & 128 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,138 +1,48 @@
<!DOCTYPE html>
<html>

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

<header>
<h1>This is your first HTML page!</h1>
</header>
<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>
<!-- fiftenth 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>
<h2>Seems like things are going pretty well so far</h2>
<p>Let's add a recipe for some delicious chocolate chip cookies</p>
<p>We are going to borrow a nice picture from General Milk</p>


<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>2 Teaspoons of baking powder</li>
<li>1 Cup of Sugar</li>
</ul>

</table>
<p><strong>Instructions</strong>(may or may not be correct)</p>
<ol>
<li>Add eggs, flour, vanilla extract and mix</li>
<li>Combine with sugar and baking powder and stir</li>
<li>Eat half the cookie batter and make batter cookies</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>
</body>
<hr>
<footer>
<p>Oh you don't tust us? You want to see the actual recipe? You can view it <a href="#">here</a> </p>
</footer>







</html>
</html>
Loading