-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (24 loc) · 802 Bytes
/
index.html
File metadata and controls
31 lines (24 loc) · 802 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>default title</title>
<link rel="stylesheet" href="./bootstrap.min.css" >
<link rel="stylesheet" href="./style.css" >
</head>
<body style="background-image: url(background.png);">
<div>
<h1 style="font-weight: bold;text-align:center;">Meeting title</h1>
<div id="itemsSheet">
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-4"></div>
<div class="col-md-4"><button id="startorstop" onclick="startOrStop()" class="btn btn-primary" style="display:block;margin:10px auto; width:100px;height:50px;font-size: 18px;" type="submit">开始</button></div>
<div class="col-md-4"></div>
</div>
</div>
<script type="text/javascript" src="./main.js"></script>
</body>
</html>