-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (83 loc) · 1.95 KB
/
index.html
File metadata and controls
90 lines (83 loc) · 1.95 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>All about WPI</title>
<link rel="stylesheet" href="public/mystyles.css">
<style>
body {background-color: aqua;}
</style>
</head>
<body>
<nav>
<ul>
<li><a href="http://www.wpi.edu">WPI Home Page</a></li>
<li><a href="http://canvas.wpi.edu/courses/41587">CS Advising Site</a></li>
</ul>
</nav>
<h1>Worcester Info for WPI Students</h1>
<p>Welcome to my page about <b>WPI</b></p> This is about stuff students do.
<div id="WPI">
<img src="public/wpi.jpg" alt="AI-generated image of WPI" width="300" />
</div>
<hr />
Stops along the commuter rail to Boston:
<ol>
<li style="background-color: limegreen">Worcester</li>
<li>Grafton</li>
<li>Westborough</li>
<li>Framingham</li>
<li>South Station</li>
</ol>
Best Restaurants near WPI
<ul class="squareBullets">
<li>Miss Worcester's Diner</li>
<li>Boomer's</li>
<li>Boynton</li>
<li>The Fix Burger Bar</li>
<li>Che Empanadas</li>
</ul>
<hr />
<table>
<caption>Dining at WPI</caption>
<tr>
<th>Location</th>
<th>Price</th>
<th>Rating</th>
</tr>
<tr>
<td>Campus Center</td>
<td>Medium High</td>
<td>4/5</td>
</tr>
<tr>
<td>Morgan Dining</td>
<td>High</td>
<td>1/5</td>
</tr>
<tr>
<td>Halal Shack</td>
<td>Medium</td>
<td>4/5</td>
</tr>
</table>
<h2>Food and Drink Form</h2>
<form>
<label for="fullName">Enter Your Full Name:</label>
<input type="text" id="fullName" />
<br />
<br />
<input type="checkbox" id="burger" />
<label for="burger">Burger</label>
<br />
<input type="checkbox" id="fries" />
<label for="fries">Fries</label>
<br />
<input type="checkbox" id="soda" />
<label for="soda">Blackberry Dr. Pepper</label>
<br />
<input type="submit" value="Submit" />
</form>
<hr />
</body>
</html>