-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (95 loc) · 4 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
<!DOCTYPE html>
<html>
<head>
<title>Woods Startup & Growth Consulting</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Anton" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script src="https://use.fontawesome.com/b2830f8d20.js"></script>
</head>
<body>
<div id="centertext">
<a href="index.html" id="myheader">Woods Consulting</a>
</div>
<nav class="navbar navbar-default" id="navbar">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="index.html"> <i class="fa fa-home"></i></a></li>
<li><a href="pmfit.html" id="nblinks">Product Market Fit</a></li>
<li><a href="operations.html" id="nblinks">Operations</a></li>
<li><a href="IR.html" id="nblinks">Investor Relations</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="hotair.jpeg" alt="Responsive image">
<div class="carousel-caption">
Do you need help accomplishing your big dreams?
</div>
</div>
<div class="item">
<img src="comps.jpg" alt="Responsive image">
<div class="carousel-caption">
We can meet on your schedule!
</div>
</div>
<div class="item">
<img src="woman.jpg" alt="Responsive image">
<div class="carousel-caption">
We provide experienced and professional service
</div>
</div>
</div>
<!-- Controls -->
<a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<div class="row">
<div class="col-sm-4">
<h1>Product Market Fit</h1>
<img src="appless.jpg" class="img-responsive" alt="Responsive image">
<h2>We can help you position your business for growth.</h2>
</div>
<div class="col-sm-4">
<h1>Operations</h1>
<img src="coffee.jpg" class="img-responsive" alt="Responsive image">
<h2>Can your operations scale with your expected growth?</h2>
</div>
<div class="col-sm-4">
<h1>Investor Relations</h1>
<img src="chairs.jpg" class="img-responsive" alt="Responsive image">
<h2>Are you prepared to pitch to accredited investors?</h2>
</div>
</div>
</div>
</body>
</html>