-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.html
91 lines (87 loc) · 3.17 KB
/
help.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
<!doctype html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<title>Graphify</title>
<script type="text/javascript" src="js/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/bootstrap-transition.js"></script>
<script type="text/javascript" src="js/bootstrap-carousel.js"></script>
<script type="text/javascript" src="js/help.js"></script>
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap-responsive.min.css">
</head>
<body>
<div class="container">
<header>
<h1>Graphify</h1>
<p class="lead">The easiest way to make graphs!</p>
<ul class="nav nav-tabs">
<li>
<a href="index.html">Home</a>
</li>
<li class="active">
<a href="#">Help</a>
</li>
</ul>
</header>
<section id="help_carousel">
<div class="row">
<div class="span8 offset2">
<div id="myCarousel" class="carousel slide">
<!-- Carousel items -->
<div class="carousel-inner">
<div class="active item">
<img src="images/1.png" alt="" />
<div class="carousel-caption">
<h4>First Page</h4>
<p>This is the first page that you see when you first visit graphify. Tables automatically expand when you input data into the gray cells.</p>
</div>
</div>
<div class="item">
<img src="images/2.png" alt="" />
<div class="carousel-caption">
<h4>Error inputs</h4>
<p>When necssary inputs don't exist, you will get an error!</p>
</div>
</div>
<div class="item">
<img src="images/3.png" alt="" />
<div class="carousel-caption">
<h4>Proper inputs</h4>
<p>With all inputs done, you are now able to generate your own graph!</p>
</div>
</div>
<div class="item">
<img src="images/4.png" alt="" />
<div class="carousel-caption">
<h4>Generated Graph</h4>
<p>By clicking the 'Generate!' button, you can get the generated graph.</p>
</div>
</div>
<div class="item">
<img src="images/5.png" alt="" />
<div class="carousel-caption">
<h4>Generated Table</h4>
<p>You can see it in a table by clicking 'See it in table' from the genrated graph. You can also go back to see the table by clicking 'See it in graph'.</p>
</div>
</div>
<div class="item">
<img src="images/6.png" alt="" />
<div class="carousel-caption">
<h4>Embed</h4>
<p>By clicking the 'Embed' button you can get the full code of the graph which you can paste it to any other online post and get the same experience!</p>
</div>
</div>
</div>
<!-- Carousel nav -->
<a class="carousel-control left" href="#myCarousel" data-slide="prev">‹</a>
<a class="carousel-control right" href="#myCarousel" data-slide="next">›</a>
</div>
</div>
</div>
</section>
</div>
</body>
</html>