-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·138 lines (120 loc) · 3.95 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
<!DOCTYPE html>
<html>
<head>
<title>Camerazii</title>
<link type="text/css" rel="stylesheet" href="stylesheet.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<meta name="viewport" content="width=device-width" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$( ".cross" ).hide();
$( "#nav ul" ).hide();
$( ".burger" ).click(function() {
$( "#nav ul" ).slideToggle( "medium", function() {
$( ".burger" ).hide();
$( ".cross" ).show();
});
});
$( ".cross" ).click(function() {
$( "#nav ul" ).slideToggle( "medium", function() {
$( ".cross" ).hide();
$( ".burger" ).show();
});
});
});
</script>
<script>
$(function() {
$('a[href*="#"]:not([href="#"])').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {
$('html, body').animate({
scrollTop: target.offset().top
}, 1500);
return false;
}
}
});
});
</script>
</head>
<body>
<!-- ******header part ******* -->
<div id="header">
<div id="nav">
<ul>
<li><a href="home.html">HOME</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="contact.html">CONTACT</a></li>
<li><a href="conditions.html">CONDITIONS</a></li>
<label id="lanlabel">Language</label>
<select id="language">
<option value="English">English</option>
<option value="French">French</option>
</select>
</ul>
<div class="burger"><span class="glyphicon glyphicon-menu-hamburger"></span></div>
<div class="cross"><span class="glyphicon glyphicon-menu-hamburger"></span></div>
</div>
<p>Camerazzi</p>
</div>
<!-- *****end of header part***** -->
<!-- *****main part***** -->
<div id="main">
<div id="bg">
<h1>Challenge your friends by taking <br> great photos with Camerazzi</h1>
<div id="dlbuttons">
<a href="https://www.apple.com/itunes/" id="apple"></a>
<a href="https://play.google.com/store?hl=en" id="playstore"></a>
</div>
<a href=#contents id="arrow"><span class="glyphicon glyphicon-menu-down"></span></a>
</div>
<div id="contents">
<div class="section">
<div class="left">
<h2>Enjoy your moments</h2>
<p>This is the best application ever, it's fast and easy to use </p>
</div>
<div class="right">
<div id="mob1"></div>
</div>
</div>
<div class="section">
<div class="left">
<h2>Share your photos and have fun</h2>
<p>Add your friends and ask them to send a photo </p>
</div>
<div class="right">
<div id="mob2"></div>
</div>
</div>
<div class="section">
<div class="left">
<h2>it's like playing game</h2>
<p>Have some fun download Camerazzi !</p>
</div>
<div class="right">
<div id="mob3"></div>
</div>
</div>
</div>
</div>
<!-- ****end of main part ****** -->
<!-- ****footer***** -->
<div id= "footer">
<ul>
<li><a href="home.html">HOME</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="contact.html">CONTACT</a></li>
<li><a href="conditions.html">CONDITIONS</a></li>
</ul>
© 2017. All Rights Reserved.
</div>
<!-- ****end of footer ******* -->
</body>
</html>