-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
143 lines (114 loc) · 6.11 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>webapp1</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<!-- build:css styles/vendor.css -->
<!-- bower:css -->
<!-- endbower -->
<!-- endbuild -->
<!-- build:css(.tmp) styles/main.css -->
<link rel="stylesheet" href="styles/main.css">
<link rel="stylesheet" href="styles/bootstrap.css">
<link rel="stylesheet" href="styles/bootstrap-responsive.css">
<link rel="stylesheet" href="styles/bootstrap-override.css">
<!-- endbuild -->
</head>
<body>
<!--[if lt IE 10]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div id="skrollr-body">
<ul id='Nav' class='nav nav-tabs navbar-fixed-top'>
<li><a href='#'> Top </a></li>
<li><a href='#portfolio'> Portfolio </a></li>
<li class='pull-right'> <img src='../images/stutzen_S.jpg'></img> </li>
<!-- <li><a href="#wambo">150px before #wambo</a></li>
<li><a href="#section1" data-menu-top="1000">1000 pixels down</a></li>
<li><a href="#awesome" data-menu-top="75p">75% down</a></li> -->
</ul>
<div id='about_us' class='section' > </div>
<div id='portfolio' class='section'>
<div id="carousel-main" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-main" data-slide-to="0" class="active"></li>
<li data-target="#carousel-main" data-slide-to="1"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item active">
<div id='splitter'>
<div id='leftbox'>
<h3> Caby Android app </h3>
<p> Our private project is this Caby app </p>
</div>
<div id='rightbox'>
<img src="images/portfolio/CABY-UI-P19-3.jpg" alt="...">
</div>
<div class="carousel-caption">
<h3></h3>
<p></p>
</div>
</div>
</div>
<div class="item">
<div id='splitter'>
<div id='leftbox'>
</div>
<div id='rightbox'>
<img src="images/portfolio/reminme2.png" alt="...">
</div>
<div class="carousel-caption">
<h3></h3>
<p></p>
</div>
</div>
</div>
</div>
<!-- Controls-prev -->
<a class="left carousel-control" href="#carousel-main" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<!-- Controls-next -->
<a class="right carousel-control" href="#carousel-main" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- <button type="button" class="btn btn-default btn-group-justified"> <a href='#Nav'>top</a> </button> -->
</div>
<script src="scripts/jquery-1.10.2.js"></script>
<script src="scripts/bootstrap.js"></script>
<script src="scripts/skrollr.js"></script>
<script src="scripts/animatescroll.js"></script>
<script src="scripts/main.js"></script>
<script type="text/javascript">
setTimeout(function() {
var s = skrollr.init({
forceHeight: false
});
skrollr.menu.init(s);
}, 500);
</script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
e=o.createElement(i);r=o.getElementsByTagName(i)[0];
e.src='//www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
ga('create','UA-XXXXX-X');ga('send','pageview');
</script>
</body>
</html>