-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogram.php
More file actions
53 lines (43 loc) · 1.75 KB
/
program.php
File metadata and controls
53 lines (43 loc) · 1.75 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
<!DOCTYPE html>
<html>
<head>
<title>Conference Program</title>
<link rel="stylesheet" type="text/css" href="cssindex.css" />
</head>
<body>
<?php require 'menu.php';?>
<h1 id="title">Conference Program</h1>
<a href="#"><img class="enlarge" src="images/schedule.png" alt="schedule_picture" height="250" width="200" title=""></a>
<table id="schedule">
<tr>
<td><b>Dates</b></td>
<td><b>1 pm</b></td>
<td><b>2 pm</b></td>
<td><b>3 pm</b></td>
<td><b>4 pm</b></td>
</tr>
<tr>
<td><b>July 7th</b></td>
<td>Conference Introduction Reception</td>
<td>Alan Turing: The Turing Test</td>
<td>The Watson Computer Applications</td>
<td>Data Mining and the Future</td>
</tr>
<tr><td><b>July 8th</b></td>
<td>Charles Babbage: Analytical Engines</td>
<td>Konrad Zuse: The Z3 and Me</td>
<td>Cybernetics: Are smart phones making us cyborgs?</td>
<td>Evolutionary Computation: Darwin and Binary</td></tr>
<tr><td><b>July 9th<b></td>
<td>Norbert Weiner: Cybernetics for the Future</td>
<td>Kids and Coding Marathon</td>
<td>Data Visualization and you</td>
<td>HCI: Making a Better Mobile App</td>
<tr><td><b>July 10th</b></td> <!--fix the th-->
<td>Final Day Lunch</td>
<td>Grace Hopper: What has been debugging me</td>
<td>Google Cardboard and Future of VR</td>
<td>Cellular Automaton Speech</td>
</table>
</body>
</html>