-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAnalysis.html
More file actions
68 lines (65 loc) · 2.62 KB
/
Copy pathAnalysis.html
File metadata and controls
68 lines (65 loc) · 2.62 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="utf-8">
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<style media="screen">
body{
background: #534E4E;
}
h2{
color: #EFBED9;
}
#map{
border: 1px solid white;
display: inline-block;
}
#columnchart_material{
border: 1px solid white;
display: inline-block;
}
</style>
<link rel="stylesheet" href="./src/css/Navbar.css">
</head>
<body>
<!-- Navgiation Bar -->
<nav class="navbar navbar-default navbar-custom1">
<div class="container navbar-custom2">
<div class="navbar-header">
<a class="navbar-brand" href="Main.html" style="color: #EFBED9;">
<img src="./src/image/logo/text_logo.png" alt="">
</a>
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navBar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="collapse navbar-collapse" id="navBar">
<ul class="nav navbar-nav navbar-right">
<li><a href="About.html" style="color: #EFBED9;">About</a></li>
<li><a href="Visualization.html" style="color: #EFBED9;">Visualization</a></li>
<li><a href="Analysis.html" style="color: #EFBED9;">Analysis</a></li>
<li><a href="https://forms.gle/myVPEEofW99y6QEJ6" target="_blank" style="color: #EFBED9;">Support</a></li>
</ul>
</div>
</div>
</nav>
<div style="text-align:center;">
<div style="display: inline-block; margin:10px;">
<h2>페이지 조회 위치 히트맵</h2>
<div id="map" style="width:800px;height:600px"></div>
<script type="text/javascript" src="./src/js/map.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=YOURKEY&callback=myMap&libraries=visualization"></script>
</div>
<div style="display: inline-block; margin:10px;">
<h2>각자료구조의 방문자 수</h2>
<div id="columnchart_material" style="width: 800px; height: 600px;"></div>
<script type="text/javascript" src="./src/js/chart.js"></script>
</div>
</div>
</body>
</html>