-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtalk.html
48 lines (44 loc) · 1.25 KB
/
talk.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
<!DOCTYPE HTML>
<html>
<head>
<meta charset = "UTF-8">
<meta name = "viewport" content="width=device-width, initial-scale=1">
<title> CHI'13 Schedule </title>
<link rel="stylesheet" href="css/jquery.mobile.structure-1.1.1.css" />
<link rel="stylesheet" href="css/jquery.mobile-1.1.1.min.css" />
<script src="js/jquery-1.7.1.min.js"> </script>
<script src="js/jquery.mobile-1.1.1.min.js"></script>
</head>
<body>
<div id="talk" data-role="page" data-add-back-btn="true">
<div data-role="header">
<h1> CHI'13 </h1>
</div>
<div data-role="content">
<div class="ui-grid-a" id="talk_info">
<div class="ui-block-a">
<h1> Some Fancy Talk Title </h1>
<p><strong> Fancy subtitle </strong></p>
<p> Authors: </p>
<ul>
<li> Jeff Heer </li>
<li> Bjorn Hartmann </li>
<li> Scott Klemmer </li>
</ul>
</div>
<div class="ui-block-b">
<p><img src="img/thumbnail.gif" alt="Talk info"/></p>
</div>
</div> <!-- END GRID A -->
</div>
<hr/>
<div>
<h3> Abstract </h3>
<p> Lorem ipsum times forty seven </p>
</div>
<div id="action_button">
<a href="#" data-role="button" data-icon="plus" onclick="alert('Added to your schedule')"> Add </a>
</div>
</div> <!-- END PAGE -->
</body>
</html>