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
Binary file added .DS_Store
Binary file not shown.
54 changes: 54 additions & 0 deletions RegistrationForm.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="" src="">
<title>My Registration Form</title>
</head>
<body>
<form action="process.php" method="post">
<p>My Registration Form </p1> <br>

<label for="first name">First Name </label>
<input type="text" id="first name" value=""><br>

<label for="last name">Last Name </label>
<input type="text" id="last name" value=""><br>

<label for="email">email </label>
<input type="text" id="last name" value=""><br>

<label for="password">Password </label>
<input type="password" id="password" name="password"><br>

<label for="pw confirm">PW Confirm </label>
<input type="password" id="pw confirm" name="pw confirm"><br>

<label for="birthday">Birthday </label>
<input type="date" id="birthday" name="birthday" value="mm/dd/yyyy"><br>

<label for="male">Male</label>
<input type="radio" id="male" name="gender" value="male">

<label for ="female">Female</label>
<input type="radio" id="female" name="gender" value="female">

<label for="decline">Other</label>
<input type="radio" id="decline" name="gender" value="decline">

<p>A short Description about yourself: </p>
<textarea name="description"></textarea><br>

<label for="favorite language">Favorite language</label>
<select name="languages" id="languages">
<option value="javascript">JavaScript</option>
<option value="java">Java</option>
<option value="python">Python</option>
<option value="c#">C#</option>
</select><br>
<input type="submit" value="Submit">

</form>
</body>
</html>
21 changes: 8 additions & 13 deletions partI.html
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>
Basic I
</title>
</head>
<body>
<h1>
What language do you love?
</h1>
<p>
I love HTML!
</p>
</body>
<head>
<title> Basic I</title>
</head>
<body>
<h1>What language do you love?</h1>
<p>I love HTML!</p>
<h2>I Love Python</h2>
</body>
</html>
40 changes: 20 additions & 20 deletions partII.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<title>
Basic II
</title>
<title> Basic II</title>
</head>
<body>
<table>
Expand All @@ -12,23 +10,25 @@
</thead>
<tbody>
<tr>
<td>
Brendan
</td>
<td>
Stanton
</td>
<td>
brendanrocks@gmail.com
</td><td> FakePassword123 </td></tr>
<td>Brendan</td>
<td>Stanton</td>
<td>brendanrocks@gmail.com</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 style ="list-style-type:circle">
<li>Food</li>
<li>Bandwidth</li>
<li>Coffee</li>
<li>Beach</li>
</ul>
<ul style ="list-style-type:disc">
<li>Luxury</li>
<li>Hotel</li>
<li>Vacation</li>
<li>Sleep</li>
</ul>
</body>
</html>