-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> | ||
<link rel="stylesheet" href="style.css"> | ||
<title>How's the weather today</title> | ||
</head> | ||
<body> | ||
|
||
<div class="container my-5 max-auto"> | ||
|
||
<h1 class="text-muted text-center my-4">How's the Weather Today</h1> | ||
<form class="change-location my-4 text-center text-muted"> | ||
<label for="city">Enter a location for eather information</label> | ||
<input type="text" name="city" class="form-control p-4"> | ||
</form> | ||
<div class="card shadow-lg rounded d-none"> | ||
<img src="https://via.placeholder.com/400x300" class="time card-img-top"> | ||
<!-- ICON --> | ||
<div class="icon bg-light mx-auto text-center"> | ||
<img src="" alt=""> | ||
</div> | ||
<!-- CITY NAME WEATHER CONDITION --> | ||
<div class="text-muted text-uppercase text-center details"> | ||
<h5 class="my-3">City Name</h5> | ||
<div class="my-3">Weather Condition</div> | ||
<div class="display-4 my-4"> | ||
<span>Temp</span> | ||
<span>°</span> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
|
||
|
||
</div> | ||
<script src="scripts/forecast.js"></script> | ||
<script src="scripts/app.js"></script> | ||
</body> | ||
</html> |