-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
114 lines (91 loc) · 5.75 KB
/
index.html
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Team A Report</title>
<!--main stylesheet-->
<link rel="stylesheet" href="css/vizpjt_main.css" type = "text/css"> <!--main style sheet to be customized-->
<link href="css/simple-line-icons.css" rel="stylesheet" type="text/css">
</head>
<body>
<!--templater header-->
<div w3-include-html="template_header.html"></div>
<nav role = "top_navbar">
<ul class = "topnav">
<li><a class="active" href="index.html">Introduction</a></li>
<li><a href="pg2_motivation.html">Motivation</a></li>
<li><a href="pg3_research_work.html">Research Work</a></li>
<li><a href="pg4_design_concept.html">Design & Concept</a></li>
<li><a href="pg5_demo.html">Demo</a></li>
<li><a href="pg6_discussion.html">Discussion</a></li>
<li><a href="pg7_futurework.html">Future Work</a></li>
<li><a href="pg8_credits.html">Credits</a></li>
<li><a href="pg9_installation_guide.html">Installation Guide</a></li>
</ul>
</nav>
<!--template left nav bar -->
<div w3-include-html="template_leftnavbar.html"></div>
<!-- the body of the content-->
<div class = "mainbody_content">
<!--slideshow-->
<div class="slideshow-container" style = "width = 80%">
<div class="mySlides fade">
<!--
<div class="nav_slide_prev" style="height: 1000px display: block float:left; ">
<a class="prev" onclick="plusSlides(-1)"><p> <font size = 20 font color = grey> < </font> </p></a>
</div> <!-->
<div class="numbertext">1 / 1</div>
<div class = "content_slide">
<table>
<tr>
<th style = "border-right: 1px grey solid; padding: 15px; width: 50%;">
<img src="data/SMU Logo.png" alt="SMU Logo" style="width:250px;height:110px;">
<h3>
<br><b>For ISSS 608 – Visual Analytics and Application </b>
<br><br>2016-17 Term 1
<br>Project Team 11
<br><br>For Professor Kam Tin Seong
</h3>
<h5 style= "text-align:left;">
<b>Description:</b><br>
This is a web report to document the thought process, preparation,
and the rationale of the design and implementation of Project A:
The Non-Conventional Sales Dashboard for Company A.
</h5>
<br><h5>Version 1.0 : 27 Nov 2016, 2359</h5>
</th>
<th style = "width: 50%; text-align:left; padding-left: 20px"><p><b>How it Works?</b></p>
<h3><b>Top Navigation Bar</b></h3>
<h5> Display the sections of the report. In total, there are 9 sections in this report. <br> <br>
Click on each of the sections to navigate to the section. <br> <br>
Within the section, click on either "<" (previous) or ">" (next) to navigate through the section.<br></h5>
<h3><b>Left Navigation Bar</b></h3>
<h5> Display the different components of our project portfolio, made up of different components of this project.<br><br>
In all, they are hosted in either <b> Team A's Github</b> or <b> Team A's SMU Wiki. </b><br><br>
Clicking on the link may bring you to another website instead.
</th>
</tr>
</table>
</div>
<div class="nav_slide_nex" style="height: 1000px display: block float:left">
<!--
<a class="next" onclick="plusSlides(1)"><p> <font size = 20 font color = grey> > </font></p> </a></div>
</div> <!-->
</div>
<br>
<!--
<div style="text-align:center">
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span>
</div>
-->
<!--slideshow-->
</div>
<!--load JS-->
<script src = "js/w3data.js"></script>
<script>
w3IncludeHTML();
</script>
<script src = "js/vizpjt_main.js"></script>
</body>
</html>