-
Notifications
You must be signed in to change notification settings - Fork 0
/
resident_dining.html
69 lines (61 loc) · 1.76 KB
/
resident_dining.html
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
<!DOCTYPE html>
<html>
<head>
<title> Resident Dining </title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel = "stylesheet" href = "style/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script type="text/javascript" src="./resources/res_din.js"></script>
</head>
<body>
<div class="header">
<img src="./style/RPI-logo.png" alt="RPI logo">
<h1>Rensselaer Dining</h1>
</div>
<div class="topnav">
<a href="index.html">Home</a>
<a href="hours_of_operation.html">Hours of Operations</a>
<a href="resident_dining.html" class="active">Resident Dining</a>
</div>
<h3>Resident Dining</h3>
<form action="" id="date-form">
<input type="date" id="date" name="date">
<input type="submit" id="submit">
</form>
<div id="week-bar">
<button type="button" id="1">Breakfast</button>
<button type="button" id="2">Lunch</button>
<button type="button" id="3">Dinner</button>
<button type="button" id="4">Late Night</button>>
</div>
<div class="row-4">
<div class="column">
<h2>BARH</h2>
<ul class="meal-list 1">
<li>Breakfast</li>
</ul>
<ul class="meal-list 2">
<li>Lunch</li>
</ul>
<ul class="meal-list 3">
<li>Dinner</li>
</ul>
<ul class="meal-list 4">
<li>Late Night</li>
</ul>
</div>
<div class="column">
<h2>Blitman</h2>
<p>Some text..</p>
</div>
<div class="column">
<h2>Commons</h2>
<p>Some text..</p>
</div>
<div class="column">
<h2>Russell Sage</h2>
<p>Some text..</p>
</div>
</div>
</body>
</html>