-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
153 lines (134 loc) · 4.99 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
144
145
146
147
148
149
150
151
152
153
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>project 1 city of Dreams</title>
<style>
body {
background-image: url('https://i.pinimg.com/originals/eb/96/11/eb96115a44d57ae5c8744cd1e152515c.jpg');
background-size:inherit;
background-position:center ;
background-attachment: fixed;
} </style>
</head>
<body>
<header>
<h1>Atlantica</h1>
<p>The City of Ocean Dreams! </p>
<hr>
</header>
<nav>
<a href="#City-description">City Description</a> |
<a href="#Attractions">Attractions</a> |
<a href="#City-statistics">City Statistics</a> |
<a href="#Feedback"> Feedback</a> |
<a href="#Quotes">Quotes</a> |
<a href="#Contact">Contact</a>
</nav>
<hr>
<section id="City-description">
<h2>Discover Atlantica</h2>
<img src="https://media.istockphoto.com/id/935746242/photo/mata-atlantica-atlantic-forest-in-brazil.jpg?s=612x612&w=0&k=20&c=NqE6m2Q8J2w6M7x7Pi8VxnMzLzq-HJQvCt5EMuvMU5o="
height="250px">
<p>Atlantica, the city where the horizon mergesthe sky with the ocean,offering dreams a canvas as vast as the
sea.</p>
</section>
<hr>
<section id="Attractions">
<h2>Main Attractions</h2>
<ol>
<li>Atlantis Tower</li>
<li>Deep Sea Museum</li>
<li>The Oceanic Bridge</li>
</ol>
<h3>Local Favorites</h3>
<ul>
<li>Merman's Street</li>
<li>Neptune's diner</li>
<li>Atlantica Beaches</li>
<ul type="circle">
<li> North Beach</li>
<li>Reef Bay</li>
<li>Mermaid Cove</li>
</ul>
</section>
<hr>
<section id="City-statistics">
<h2>City Statistics</h2>
<table border="1">
<thead>
<tr>
<th>Attribute</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td>Population</td>
<td>5 million</td>
</tr>
<tr>
<td>Landmarks</td>
<td>25</td>
</tr>
<tr>
<td>Parks</td>
<td>18</td>
</tr>
<tr>
<td>Schools</td>
<td>120</td>
</tr>
<tr>
<td>Beaches</td>
<td>7</td>
</tr>
</tbody>
</table>
</section> <hr>
<section id="Feedback">
<h2>Citizen Feedback</h2>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name" required><br>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required><br>
<label for="age"> Age:</label>
<input type="number" id="age" name="age" required style="width: 40px;"><br>
<label for="FavoriteAttraction"> Favorite Attraction: </label>
<select id="FavoriteAttraction" name="FavoriteAttraction">
<option value="Atlantis Tower" style="color: white; background-color:#514e48;">Atlantis Tower</option>
<option value="Deep Sea Museum" style="color: white; background-color:#514e48;">Deep Sea Museum</option>
<option value="The Oceanic Bridge" style="color: white; background-color:#514e48;">The Oceanic Bridge
</option>
</select><br>
<label for="comments">Comments:</label><br>
<textarea id="comments" name="comments" rows="4" cols="50" required></textarea><br>
<label for="Name:"> Newsletter:</la bel>
<bc>
<input type="checkbox" id="subscribe">
<bc>
<label for="subscribe">Subscribe to Newsletter:</label><br>
<input type="submit" value="Submit">
</form>
</section> <hr>
<section id="Quotes">
<h2>What Citizens Say</h2>
<p><span>"This city changed my life!"</span> - John Doe</p>
<p><span>"India is better but i got the opportunity to see atlantic. I love it"</span> - Kartik</p>
</section> <hr>
<section id="Contact">
<h2>Contact Information</h2>
<p>For tourism information, contact us at:</p>
<address>
123 Dream Street<br>
Shalimar garden, Ghazaiabad 201005<br>
<a href="tel:123456778">Phone: +91-8851284339</a>
</address>
</section>
<footer>
<p> ©️ 💖Experience the magic of Dream City!</p>
</footer>
</body>
</html>