Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
kstt27 authored Nov 4, 2021
1 parent 1a77df3 commit 4ca28be
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions index.html
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>&deg;</span>
</div>
</div>

</div>


</div>
<script src="scripts/forecast.js"></script>
<script src="scripts/app.js"></script>
</body>
</html>

0 comments on commit 4ca28be

Please sign in to comment.