-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathp3.html
More file actions
27 lines (27 loc) · 970 Bytes
/
Copy pathp3.html
File metadata and controls
27 lines (27 loc) · 970 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
<!DOCTYPE html>
<html>
<head>
<title>
Mind Game
</title>
<!-- <script type="text/javascript" src="p3Better.js"></script> -->
<script type="text/javascript" src="p3Better.js"></script>
</head>
<body style="background-color: gainsboro;">
<div style="text-align: center; font-size: 2cm; height: 2cm;">
Mind Game
</div>
<div style="margin: 2cm 4cm 1cm; border-style: solid; border-color: brown; width:fit-content;">
<table id="tablaJoc"></table>
</div>
<div style="margin-left: 4cm; margin-bottom: 1cm;">
<label id="timer"></label>
</div>
<div>
<input type="button" value="Reset" onclick="javascript:createTable()" style="margin-left: 4cm; size: 2cm; font-size: 1cm; background-color:red;">
</div>
</body>
<script>
javascript:createTable();
</script>
</html>