-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathINDEX.html
More file actions
57 lines (54 loc) · 1.81 KB
/
INDEX.html
File metadata and controls
57 lines (54 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<title>My Webpage</title>
</head>
<body>
<h1>Welcome to My WebPage</h1>
<h2>About Me</h2>
<p>Hello! My name is Joshua Budzynski, and this is a little about me!</p>
<h3>Profile Photo</h3>
<img src="IMG_7814.jpeg" alt="Joshua Budzynski" width="250px" height="200px"/>
<h4>My Interests</h4>
<p>I enjoy a variety of activities, including:</p>
<ul>
<li>Playing Volleyball for the SLU Men's Club Team</li>
<li>Meeting new people through my Fraternity</li>
</ul>
<blockquote>
"Life is what happens when you're busy making other plans." - John Lennon
</blockquote>
<h3>Useful Links</h3>
<p>Here is a <a href="https://en.wikipedia.org/wiki/Volleyball">link</a> to Wikipedia about Volleyball.</p>
<h3>Whats your position in Volleyball</h3>
<select>
<option value="---"></option>
<option value="Outside Hitter">Outside Hitter</option>
<option value="Setter">Setter</option>
<option value="Middle">Middle</option>
</select>
<h3>My Hobbies</h3>
<table border="1">
<tr>
<th>Name</th>
<th>Hobby</th>
<th>Last Time I Did This</th>
</tr>
<tr>
<td>Joshua Budzynski</td>
<td>Volleyball</td>
<td>Last Weekend</td>
</tr>
<tr>
<td>Joshua Budzynski</td>
<td>Golf</td>
<td>Yesterday</td>
</tr>
<tr>
<td>Joshua Budzynski</td>
<td>Hang out wiht family</td>
<td>Last Month</td>
</tr>
</table>
</body>
</html>