-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (36 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Parcel_boiler_plate</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/styles.scss">
</head>
<body>
<nav class='nav' style="height: 60px;">
<h1 class="heading">We-tha</h1>
<div class="currentInfo">
<p class="currentCity"></p>
<p class="currentTemp"></p>
<p class="currentDesc"></p>
</div>
<p class="username"></p>
<button class="refresh">Refresh</button>
<button class="signOut">Sign in</button>
</nav>
<form class="controller container" id='myForm'>
<input type="text" name="cityName" placeholder="enter city name"> </input>
<div class="submit-btn">
<input type="submit"> </input>
<div class="loading">
<div class="loader"></div>
</div>
</div>
</form>
<div class="container cards-container">
<main class="cards"></main>
<button type="button" class="show-more">Show more</button>
</div>
<script src="/app.js"></script>
</body>
</html>