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
16 changes: 5 additions & 11 deletions partI.html
Original file line number Diff line number Diff line change
@@ -1,16 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<title>
Basic I
</title>
</head>
<head>
<title>Basic I</title>
</head>
<body>
<h1>
What language do you love?
</h1>
<p>
I love HTML!
</p>
<h1>What language do you love?</h1>
<p>I love HTML!</p>
</body>
</html>
41 changes: 20 additions & 21 deletions partII.html
Original file line number Diff line number Diff line change
@@ -1,34 +1,33 @@
<!DOCTYPE html>
<html>
<head>
<title>
Basic II
</title>
<title>Basic II</title>
</head>
<body>
<table>
<thead>
<tr><th>First Name</th><th>Last Name</th><th>Email</th><th>Password</th></tr>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Email</th>
<th>Password</th>
</tr>
</thead>
<tbody>
<tr>
<td>
Brendan
</td>
<td>
Stanton
</td>
<td>
[email protected]
</td><td> FakePassword123 </td></tr>
<td>Brendan</td>
<td>Stanton</td>
<td>[email protected]</td>
<td>FakePassword123</td>
</tr>
</tbody>
</table>
<h1>Here is a list of my favorite things:</h1>
<ul><li>Food</li>
<li>Bandwidth</li>
<li>Coffee</li>
<li>Beach
</li>
</ul>
</table>
<h1>Here is a list of my favorite things:</h1>
<ul>
<li>Food</li>
<li>Bandwidth</li>
<li>Coffee</li>
<li>Beach</li>
</ul>
</body>
</html>