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
10 changes: 10 additions & 0 deletions Fisk_Rindy_partI.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<title>Basic I</title>
</head>
<body>
<h1>What language do you love?</h1>
<p>I love HTML!</p>
</body>
</html>
33 changes: 33 additions & 0 deletions Fisk_Rindy_partII.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>
<head>
<title> Basic II </title>
</head>
<body>
<table>
<thead>
<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>
</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>
</body>
</html>