-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexplore.html
More file actions
87 lines (77 loc) · 3.66 KB
/
explore.html
File metadata and controls
87 lines (77 loc) · 3.66 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Floor Plan Parametrics</title>
<link href="https://fonts.googleapis.com/css?family=Muli" rel="stylesheet"> <!--Google fonts -->
<link rel="stylesheet" type="text/css" href="style.css">
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="d3.parcoords.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<!-- Header -->
<header>
<div class="header">
<h2 class="title">Floor Planner</h2>
</div>
</header>
<!-- Main content -->
<body class="body" style="background: #edf0ef border: 12px solid #edf0ef">
<div id="mySidebar" class="sidebar">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="index.html">Start</a>
<a href="explore.html">Explore</a>
<a href="#">Room Settings</a>
</div>
<div id="main">
<div id="leftContainer">
<button class="openbtn" onclick="openNav()">☰ </button>
</div>
<table class="cell" border="4" bordercolor="#edf0ef" align="center" style="border: 12px solid #edf0ef; font-size: 12px">
<tr>
<td><img src=".\Images\8.png" alt="" border=6 height=200 width=300></img><h3>01</h3></th>
<td><img src=".\Images\9.png" alt="" border=6 height=200 width=300></img><h3>02</h3></th>
<td><img src=".\Images\10.png" alt="" border=6 height=200 width=300></img><h3>03</h3></th>
<td><img src=".\Images\11.png" alt="" border=6 height=200 width=300></img><h3>04</h3></th>
</tr>
<tr>
<td><img src=".\Images\12.png" alt="" border=6 height=200 width=300></img><h3>05</h3></th>
<td><img src=".\Images\13.png" alt="" border=6 height=200 width=300></img><h3>06</h3></th>
<td><img src=".\Images\14.png" alt="" border=6 height=200 width=300></img><h3>07</h3></th>
<td><img src=".\Images\15.png" alt="" border=6 height=200 width=300></img><h3>08</h3></th>
</tr>
<tr>
<td><img src=".\Images\16.png" alt="" border=6 height=200 width=300></img><h3>09</h3></th>
<td><img src=".\Images\17.png" alt="" border=6 height=200 width=300></img><h3>10</h3></th>
<td><img src=".\Images\18.png" alt="" border=6 height=200 width=300></img><h3>11</h3></th>
<td><img src=".\Images\19.png" alt="" border=6 height=200 width=300></img><h3>12</h3></th>
</tr>
<tr>
<td><img src=".\Images\5.png" alt="" border=6 height=200 width=300></img><h3>13</h3></th>
<td><img src=".\Images\5.png" alt="" border=6 height=200 width=300></img><h3>14</h3></th>
<td><img src=".\Images\5.png" alt="" border=6 height=200 width=300></img><h3>15</h3></th>
<td><img src=".\Images\5.png" alt="" border=6 height=200 width=300></img><h3>16</h3></th>
</tr>
<tr>
<td><img src=".\Images\5.png" alt="" border=6 height=200 width=300></img><h3>17</h3></th>
<td><img src=".\Images\5.png" alt="" border=6 height=200 width=300></img><h3>18</h3></th>
<td><img src=".\Images\5.png" alt="" border=6 height=200 width=300></img><h3>19</h3></th>
<td><img src=".\Images\5.png" alt="" border=6 height=200 width=300></img><h3>20</h3></th>
</tr>
</table>
</div>
<script>
function openNav() {
document.getElementById("mySidebar").style.width = "250px";
document.getElementById("main").style.marginLeft = "250px";
}
function closeNav() {
document.getElementById("mySidebar").style.width = "0";
document.getElementById("main").style.marginLeft= "0";
}
</script>
</body>
<footer>
<div class="footer1"></div>
</footer>
</html>