-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtools.html
165 lines (138 loc) · 4.91 KB
/
tools.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="../../assets/ico/favicon.ico">
<title>Antelope Software LLC</title>
<!-- Bootstrap core CSS -->
<!--link href="bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet" -->
<link rel="stylesheet" href="css/main.css"/>
<!-- Custom styles for this template -->
<link href="css/starter-template.css" rel="stylesheet">
<style type="text/css">
/* Sticky footer styles
-------------------------------------------------- */
html,
body {
height: 100%;
/* The html and body elements cannot have any padding or margin. */
}
/* Wrapper for page content to push down footer */
#content {
min-height: 100%;
height: auto !important;
height: 100%;
/* Negative indent footer by it's height */
margin: 0 auto -30px;
}
/* Set the fixed height of the footer here */
#push,
#footer {
height: 30px;
}
/* Lastly, apply responsive CSS fixes as necessary */
@media (max-width: 767px) {
#footer {
margin-top: 20px;
margin-left: -20px;
margin-right: -20px;
padding-left: 20px;
padding-right: 20px;
}
}
/* Custom page CSS
-------------------------------------------------- */
/* Not required for template or sticky footer method. */
#wrap > .container {
padding-top: 60px;
}
.container .credit {
margin: 20px 0;
}
code {
font-size: 80%;
}
</style>
</head>
<body>
<div class="navbar navbar-inverse 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="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<img class="navbar-logo" height=60 src="images/AntelopeSideWhite.png">
<!--a class="navbar-brand" href="#"> ApplianceWatt</a -->
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li ><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li class="dropdown active">
<a href="#"
class="dropdown-toggle"
data-toggle="dropdown">
Services
<b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li><a href="architecture.html">Architecture & Design</a></li>
<li><a href="development.html">Software Development</a></li>
<li class="active"><a href="#">Tools & Services</a></li>
</ul>
</li>
<li><a href="ourwork.html">Our Work</a></li>
<li><a href="mailto:[email protected]?Subject=Contact">Contact</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<div class="container" id="content">
<br>
<h1>Tools and Services</h1>
<br>
<ul class="nav nav-tabs" role="tablist">
<li class="active"><a href="#home" role="tab" data-toggle="tab">Overview</a></li>
<li><a href="#profile" role="tab" data-toggle="tab">Deployment Tools</a></li>
<li><a href="#securityplan" role="tab" data-toggle="tab">Security Plan</a></li>
</ul>
<!-- Tab panes -->
<div class="tab-content">
<div class="tab-pane active" id="home">
<br>
<p>Home tab contents</p>
</div>
<div class="tab-pane" id="profile">
<br>
<p>Profile tab contents</p>
</div>
<div class="tab-pane" id="messages">
<br>
<p>Messages tab contents</p>
</div>
<div class="tab-pane" id="settings">
<br>
<p>Settings tab contents</p>
</div>
</div>
</div>
<div id="footer">
<div class="container">
<row>
<p class="copyright">© 2014 Antelope Software LLC</p>
</row>
</div>
</div>
<!-- Placed at the end of the document so the pages load faster -->
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
</body>
</html>