-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (50 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Weather App</title>
<!-- CSS -->
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<div id="main-container">
<nav>
<div class="logo">
<a href="#"><img src="src/image/logo.svg" alt="logo Weather App"></a>
</div>
<ul class="menu">
<li><a href="#">Contact</a></li>
<li><a href="#">Support</a></li>
<li><a href="#">Privacy Policy</a></li>
</ul>
</nav>
<div class="container">
<div class="box-left">
<h1>The <span class="orange-title">Weather Channel</span> <br>for IOS and Android</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam sit amet rhoncus sem,
phasellus dignissim facilisis laoreet. Interdum et malesuada fames ac ante ipsum.</p>
<a href="#" class="button-standard">Download App</a>
</div>
<div class="box-right">
<div class="box-right--search">
<input type="text" placeholder="Search location..." id="search">
</div>
<div id="card-city" style="visibility: hidden;">
<ul id="select">
</ul>
</div>
<div id="card-weather" style="display: none;">
</div>
</div>
</div>
<footer>
<div class="footer-left">Thank you <img src="src/image/logo-open-weather-map.svg" alt="Logo Open Weather Map" class="logo-footer"></div>
<div class="footer-right">Created by Sara Bianchi</div>
</footer>
</div>
<!-- JAVASCIPT FILE -->
<script src="js/app.js"></script>
</body>
</html>