-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (77 loc) · 3.19 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
<!DOCTYPE html>
<html>
<head>
<title>Phylogenomics Visualization</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1"/>
<!-- Using local jquery, bootstrap and D3 -->
<script src="assets/js/jquery.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/d3.v3.min.js"></script>
<!-- Using bootstrap, fontawesome and custom css -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!-- header -->
<header class="navbar navbar-fixed-top" role="navigation" >
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">PhyloGraphs</a>
</div>
</div>
<!-- navbar -->
<nav class="nav navbar-collapse" role="navigation">
<ul class="nav navbar-nav navbar-right">
<li><a href="index.html"><i class="fa fa-home"></i> Home</a></li>
<li><a href="#about"><i class="fa fa-info-circle"></i> About</a></li>
<li><a href=""><i class="fa fa-question-circle"></i> Help</a></li>
<li><a href="https://github.com/tomarashish/phylogenomics-viz/wiki/"> <i class="fa fa-github"></i> Developer Guide</a></li>
</ul>
</nav><!-- end of nav-->
</header><!-- end of header-->
<!-- footer -->
<!-- Container-->
<div class="container-fluid">
<div class="row parallex-img1">
<div class="inner">
<div class="col-md-12 col-xs-12">
<header>
<h1>PhyloGraphs</h1>
</header>
<p>
Phylogenetic Tree And Metadata
<br>Visualization Tool.
<br> Phylogeneomics Visualization Library Using D3.js
</p>
</div>
<div class="caption col-md-6 col-xs-6">
<a href="phyloviz.html">
<button class="btn btn-block btn-responsive btn-solid">TRY APP</button></a>
</div>
<div class="caption col-md-6 col-xs-6">
<a href="https://github.com/tomarashish/phylogenomics-viz">
<button class="btn btn-block btn-responsive btn-solid">LIBRARY ON GITHUB</button></a>
</div>
</div> <!-- end inner -->
<div class="inner arrow-down">
<a href="#step1">
<i class="fa fa-chevron-down"></i>
</a>
</div>
</div><!--end of row-->
<div class="row" id="step1">
<div></div>
</div><!--end of row-->
<!--div class="row">
<div class="parallex-img2"></div>
</div><!--end of row-->
</div><!--end of container-->
</body>
</html>