-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
79 lines (72 loc) · 3.42 KB
/
home.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Home</title>
<!-- <Bootsarap> -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/main.css">
</head>
<body>
<!-- Navigation bar -->
<nav class="navbar navbar-inverse navigation">
<div class="container-fluid">
<div class="navbar-neader">
<a class="navbar-brand" href="home.html">Tech Bang</a>
</div>
<ul class="nav navbar-nav">
<li class="active"><a href="home.html">Home</a></li>
<li><a href="what_we_do.html">What We Do</a></li>
<li><a href="our_thoughts.html">Our Thoughts</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="reach_us.html">Reach Us</a></li>
</ul>
<!-- Log out button -->
<ul class="nav navbar-nav navbar-right">
<li><a href="login.html">Log out</a></li>
</ul>
</div>
</nav>
<!-- Section One -->
<section class="container-fluid section-one">
<!-- Images -->
<div class="col-md-4 images">
<center><a href="what_we_do.html">
<img class="img-responsive img-rounded" src="assets/images/what_we_do.jpg" alt="What we do"
width="400" height="150" title="What we do" name="What we do">
<h3><strong>What we do</strong></h3></a>
<p>We follow and fund tech startups in Africa, telling the story of Africa's tech ecosystem with the aim of informing, funding and showcasing tech startups in Africa.
</p>
<p><a href="what_we_do.html"><h5><strong>read more</strong></h5></a></p>
</center>
</div>
<div class="col-md-4 images">
<center><a href="our_thoughts.html">
<img class="img-responsive img-rounded" src="assets/images/our_thoughts.jpg" width="400" height="300" alt="Our Thoughts" title="Our Thoughts" name="Our Thought">
<h3><strong>Our Thoughts</strong></h3></a>
<p>See our activities and big happenings in the African tech ecosystem. Follow us to read our thoughts and interviews with stalkholders in the African tech ecosystem.
</p>
<p><a href="contact_us.html"><h5><strong>read more</strong></h5></a></p>
</center>
</div>
<div class="col-md-4 images">
<center><a href="reach_us.html">
<img class="img-responsive img-rounded" src="assets/images/reach_us.jpg" width="400" height="300" alt="Reach Us" title="Reach Us" name="Reach Us">
<h3><strong>Reach Us</strong></h3></a>
<p>What to reach us for funding, news or anything tech contact us now. Our doors are always open for collaboration and patternship. Looking forward to hearing from you.
<p><a href="our_thoughts.html"><h5><strong>read more</strong></h5></a></p>
</center>
</div>
</section>
<!-- Footer -->
<footer class="container-fluid footer">
<center>
<h6>2016 Tech Bang Ltd. All Rights Reserved © . Designed by Emeka Nwachukwu (aka - brist)</h6>
</center>
</footer>
<!-- JQuery -->
<script src="assets/js/jquery.min.js"></script>
<!-- Bootstrap Query -->
<script src="assets/js/bootstrap.min.js"></script>
</body>
</html>