-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (67 loc) · 2.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Jay Weather</title>
<link rel="stylesheet" href="./static/style.css" />
</head>
<body>
<header>
<div class="header" id="header">
<div class="head-container">
<h1>Welcome to Jay Weather Forecast</h1>
<p>Your Personalized Weather Update</p>
<div class="form">
<input
type="text"
placeholder="Search For Cities"
id="seachCity1"
/>
<button id="seachBtn1">Seach</button>
</div>
</div>
</div>
<section id="section">
<!-- weather header -->
<div class="Weather-header">
<input type="text" placeholder="Search For Cities" id="seachCity" />
<button id="seachBtn">Seach</button>
</div>
<div class="weather-content">
<div class="weather-item">
</div>
<aside>
<p>7-DAY FORCAST</p>
<div class="weather-forcast">
<div class="aside-item">
<p class="day">mon</p>
<div class="aside-img">
<img src="./image/cloud.jpeg" alt="" class="forecastImg" />
<p class="weatherCondition">suuny</p>
</div>
<p>
<span class="highTempt">90</span
><span class="lowTemp">90</span>
</p>
</div>
<div class="borderr"></div>
<div class="aside-item">
<p class="day">Tue</p>
<div class="aside-img">
<img src="./image/cloud.jpeg" alt="" class="forecastImg" />
<p class="weatherCondition">ThurderStome</p>
</div>
<p>
<span class="highTempt">90</span
><span class="lowTemp">90</span>
</p>
</div>
</div>
</aside>
</div>
</section>
</header>
<script src="./static/script.js"></script>
</body>
</html>