-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathabout.html
89 lines (79 loc) · 2.73 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<title>kib.io</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<link href="./css/bootstrap.css" rel="stylesheet" media="screen">
<link href="./css/bootstrap-responsive.css" rel="stylesheet">
<link rel="icon" href="./img/favicon.ico" type="image/x-icon">
<!-- Custom Styles -->
<link href="./css/custom.css" rel="stylesheet" media="screen">
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="brand" href="index.html"> <img src="./img/kibio.mark-white.png"></a>
<div class="nav-collapse collapse">
<ul class="nav pull-right">
<li>
<a href="./index.html">Download</a>
</li>
<li class="active">
<a href="#">What is this?</a>
</li>
<li>
<a href="./faq.html">FAQ</a>
</li>
<li>
<a href="./team.html">The Team</a>
</li>
<li>
<a href="./partners.html">Our Partners</a>
</li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<!-- Subhead
================================================== -->
<header class="jumbotron subhead" id="overview">
<div class="container">
<img src="./img/kibio.logo.squarepixels.nobg-01.png" />
<p class="lead"><small>Kibio is a simple, ready-to-use tool for digital media.</small></p>
</div>
</header>
<div class="container">
<div class="row-fluid">
<div class="text span4">
<h3>Functionality</h3>
<p>
Kibio maps, masks and warps video without all the fuss of existing solutions.
</p>
</div>
<div class="text span4">
<h3>How it Works</h3>
<p>
Load files. Make a playlist. Map your settings. Ready to go. Having trouble?
<a href="./faq.html">Visit the FAQs. </a>Still stuck? <a href="./bug.html">Report a bug.</a>
</p>
</div>
<div class="text span4">
<h3>Get Involved</h3>
<p>
We're excited to see open tools get better. <a href="www.github.com/kibio">Fork the code</a> from github. Let us know how it's going.
</p>
</div>
</div>
</div>
<script src="./js/jquery.js"></script>
<script src="./js/bootstrap.min.js"></script>
</body>
</html>