forked from AswinPG/FossLab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnew.html
More file actions
252 lines (211 loc) · 7.4 KB
/
new.html
File metadata and controls
252 lines (211 loc) · 7.4 KB
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
<!DOCTYPE html>
<html>
<head >
<!--verthe oru rasam-->
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
font-family: "Lato", sans-serif;
}
.sidenav {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #111;
overflow-x: hidden;
transition: 0.5s;
padding-top: 30px;
}
.sidenav a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 15px;
color: #818181;
display: block;
transition: 0.6s;
}
.sidenav a:hover {
color: #f1f1f1;
}
.sidenav .closebtn {
position: absolute;
top: 0;
right: 25px;
font-size: 16px;
margin-left: 50px;
}
#main {
transition: margin-left .5s;
padding: 16px;
}
@media screen and (max-height: 450px) {
.sidenav {padding-top: 15px;}
.sidenav a {font-size: 15px;}
}
</style>
</head>
<body>
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="file:///home/neeru/Desktop/FOSS/trial.html">About</a>
<a href="file:///home/neeru/Desktop/FOSS/services.html">Services</a>
<a href="file:///home/neeru/Desktop/FOSS/contact.html">Contact</a>
</div>
<div id="main">
<span style="font-size:15px;cursor:pointer" onclick="openNav()">☰ More</span>
</div>
<script>
function openNav() {
document.getElementById("mySidenav").style.width = "250px";
document.getElementById("main").style.marginLeft = "250px";
}
function closeNav() {
document.getElementById("mySidenav").style.width = "0";
document.getElementById("main").style.marginLeft= "0";
}
</script>
</body>
<!--verthe oru rasam-->
<marquee direction="left" ><h4>You can book your visit by Signing Up or check your booking status by Logging In</h4></marquee>
<!-- for background image-->
<style>
body:before {
background:url(http://www.kindredgroup.com/wp-content/uploads/2016/11/sydney-1.jpg) no-repeat center center fixed;
display: block; content:""; position: absolute; z-index:-1;
top:0; left: 0; right: 0; height: 100%;
opacity:.5;
}
</style>
<style>
body:before {
background:url(http://www.kindredgroup.com/wp-content/uploads/2016/11/sydney-1.jpg) no-repeat center center fixed;
display: block; content:""; position: absolute; z-index:-1;
top:0; left: 0; right: 0; height: 100%;
opacity:.5;
}
</style>
<title>Visit Sydney</title>
</head>
<!-- for login and signup buttons-->
<head>
<style>
a:link, a:visited {
background-color: #660066;
color: white;
padding: 14px 25px;
text-align: center;
text-decoration: none;
display: inline-block;
}
a:hover, a:active {
background-color:#9966FF;
}
</style>
</head>
<body>
<a href="file:///home/neeru/Desktop/FOSS/loginpage.html" target="_blank">LOGIN</a>
<a href="signup.html" target="_blank">SIGN UP</a>
</body>
<!-- for image slide -->
<title>W3.CSS</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<body>
<div class="w3-content w3-display-container">
<img class="mySlides" src="https://in.sydney.com/sites/international/files/styles/header_slider/public/2016-12/Sydney-Harbour.jpg?itok=QmFhEdGP" style="width:100%">
<img class="mySlides" src="https://in.sydney.com/sites/international/files/styles/header_slider/public/2018-03/Plain%20Header%20-Bouquet-Visual-OH_WEB.jpg?itok=85DdBvPV" style="width:100%">
<img class="mySlides" src="https://in.sydney.com/sites/international/files/styles/header_slider/public/2016-12/Sydney-Harbour-Bridge.jpg?itok=lPEHJE0u" style="width:100%">
<button class="w3-button w3-black w3-display-left" onclick="plusDivs(-1)">❮</button>
<button class="w3-button w3-black w3-display-right" onclick="plusDivs(1)">❯</button>
</div>
<script>
var slideIndex = 1;
showDivs(slideIndex);
function plusDivs(n) {
showDivs(slideIndex += n);
}
function showDivs(n) {
var i;
var x = document.getElementsByClassName("mySlides");
if (n > x.length) {slideIndex = 1}
if (n < 1) {slideIndex = x.length}
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
x[slideIndex-1].style.display = "block";
}
</script>
<!-- Heading-->
<style>
h1 {
text-shadow: 3px 2px green;
}
</style>
</head>
<h1 style="color:blue" align="center"> <u>Welcome to Sydney..!!</u></style></h1>
<p>
</body>
<!-- for first letter special Paragraph-->
<head>
<style>
p::first-letter {
color: #black;
font-size: xx-large;
}
</style>
</head>
<p style="color:#black" text-shadow: 3px 2px red;>Sydney is Australia's largest and most famous city. Think of the World Heritage-listed Sydney Opera House and its ingenious shape, like billowing white sails, and the impressive steel arch of the Harbour Bridge. The blue waters of the harbour and the white sands and curling waves of Bondi Beach will also come to mind.
These beautiful images inspire people from all over the world to visit Sydney. Once here, they discover so much more to see and do. This beautiful cosmopolitan city celebrates its cultural diversity and heritage, and passion for arts and sports.
With an abundance of fresh produce, great seafood and multicultural influences, Sydney's restaurants and cafe's cater for a range of tastes and budgets. You'll find plenty of accommodation choices, too.
Shopping is a delight, with international brands available in modern shopping malls, the grand Queen Victoria Building, stylish boutiques and markets.
A temperate climate makes Sydney spectacular at any time of the year. Walk in pretty parks and gardens, stroll along beaches, and marvel at Australia's unique native animals and marine life at Taronga Zoo and SEA LIFE Sydney Aquarium year round.
Aboriginal people have a long connection with Sydney, dating back at least 50,000 years before the arrival of the First Fleet in 1788, and cruises, walking tours, museums and art galleries introduce visitors to Aboriginal culture and traditions.
Beyond Sydney there are many great destinations to explore in regional NSW, from some of the world's best surfing beaches and national parks to wonderful wine regions. The World Heritage-listed Blue Mountains are two hours from the city centre by train.</p>
<!-- for cuisine hover image-->
<head>
<style>
div.gallery {
margin: 5px;
border: 1px solid #ccc;
float: left;
width: 400px;
}
div.gallery:hover {
border: 1px solid #777;
}
div.gallery img {
width: 100%;
height: auto;
}
div.desc {
padding: 15px;
text-align: center;
}
</style>
</head>
<body>
<div class="gallery">
<a target="_blank" href="img_fjords.jpg">
<img src="https://cache-graphicslib.viator.com/graphicslib/thumbs674x446/22584/SITours/all-inclusive-blue-mountains-small-group-day-trip-from-sydney-in-sydney-254235.jpg" alt="Main attractions of Sydney" width="300" height="200">
</a>
<div class="desc">Main Attractions</div>
</div>
<div class="gallery">
<a target="_blank" href="img_forest.jpg">
<img src="http://en.people.cn/NMediaFile/2016/0208/FOREIGN201602081044000508651660948.jpg" alt="Cultures of Sydney" width="600" height="400">
</a>
<div class="desc">Explore the Culture</div>
</div>
<div class="gallery">
<a target="_blank" href="file:///home/neeru/Desktop/FOSS/neha.html">
<img src="https://s3-media2.fl.yelpcdn.com/bphoto/Yxkk2T5HhnNvbdf1ExsFBQ/o.jpg" alt="Cuisines" width="600" height="400">
</a>
<div class="desc">Discover different tastes</div>
</div>
</body>
</body>
</html>