menu.html
1.56 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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../assets/css/menu.css">
<title>Document</title>
</head>
<body>
<div id="div_root">
<div id="div_top"><h1>Smartphone Forensic Tool</h1></div>
<div id="div_con1">
<div id ="menu">
<div id="btn_group">
<button id="btn" onclick="location.href='menu1.html'">menu1</button>
</div>
</div>
<div id ="menu">
<div id="btn_group">
<button id="btn" onclick="location.href='menu2.html'">menu2</button>
</div>
</div>
<div id ="menu">
<div id="btn_group">
<button id="btn" onclick="location.href='menu3.html'">menu3</button>
</div>
</div>
<div id ="menu">
<div id="btn_group">
<button id="btn" onclick="location.href='menu4.html'">menu4</button>
</div>
</div>
<div id ="menu">
<div id="btn_group">
<button id="btn" onclick="location.href='menu5.html'">menu5</button>
</div>
</div>
<div id ="menu">
<div id="btn_group">
<button id="btn" onclick="location.href='menu6.html'">menu6</button>
</div>
</div>
</div>
</div>
<div id="div_con2">
<h2>연결된 휴대폰 정보 출력</h2>
</div>
</div>
<script src="menu.js"></script>
</body>
</html>