-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·125 lines (111 loc) · 4.69 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!-- SITE TITLE -->
<title>Tribe Ventures</title>
<!-- Latest Bootstrap min CSS -->
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<!-- Google Font -->
<link href='http://fonts.googleapis.com/css?family=Roboto+Slab:400,700,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="assets/css/style.css">
<link rel="apple-touch-icon" sizes="57x57" href="assets/img/favi/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="assets/img/favi/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="assets/img/favi/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="assets/img/favi/apple-touch-icon-76x76.png">
<link rel="icon" type="image/png" href="assets/img/favi/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="assets/img/favi/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="assets/img/favi/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="assets/img/favi/manifest.json">
<link rel="mask-icon" href="assets/img/favi/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="assets/img/favi/favicon.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="assets/img/favi/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<style>b a{padding: 10px;background-color:#115740;color: #fff;border-radius: 3px;}</style>
</head>
<body>
<!-- START PRELOADER -->
<div class="preloader">
<div class="status">
<div class="status-mes"></div>
</div>
</div>
<!--END PRELOADER -->
<!-- START NAVBAR -->
<div class="navbar navbar-default navbar-fixed-top menu-top" role="navigation">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="/"><img src="assets/img/logo.png" alt="logo" /></a>
</div>
</div>
</div>
<!-- END NAVBAR -->
<!-- START HOME DESIGN -->
<header class="hero" style="background-image: url(assets/img/bg/EC-front.jpg); background-size:cover; background-position: center center;background-attachment:fixed;">
<div class="home_overlay">
<div class="container">
<div class="col-md-10 col-md-offset-1 col-xs-12 text-center">
<div class="hero-text wow fadeInRight" data-wow-duration="1s" data-wow-delay="0.3s" data-wow-offset="0">
<h1>Our new home</h1>
<p>Join us as we continue our journey at <b><a href="http://millerec.com/">millerec.com</a></b></p>
</div><!-- //.HERO-TEXT -->
</div><!--- END COL -->
</div><!--- END CONTAINER -->
</div><!--- END HOME OVERLAY -->
</header>
<!-- END HOME DESIGN -->
<!-- START FOOTER -->
<footer class="footer section-padding">
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<div class="footer-content">
<a href="/"><img src="assets/img/logo.png" alt="logo" /></a>
<p class="footer_copyright">© 2017 Tribe Ventures All Rights Reserved.</p>
</div>
</div><!--- END COL -->
</div><!--- END ROW -->
</div><!--- END CONTAINER -->
</footer>
<!-- END FOOTER -->
<!-- Latest jQuery -->
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<!-- Latest compiled and minified Bootstrap -->
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<!-- scripts js -->
<script src="assets/js/scripts.js"></script>
<script type="text/javascript">
/* Portfolio pop up */
$('#portfolio').magnificPopup({
delegate: 'a.pop-up',
type: 'image',
gallery: {
enabled: true,
navigateByImgClick: true,
preload: [0,1]
},
image: {
tError: 'The image could not be loaded.',
titleSrc: function(item) {
return item.el.find('.ptitle').text();
}
}
});
/* End Portfolio pop up */
</script>
<!-- Google Analytics Tracking -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-91494941-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>