45 lines
1.7 KiB
HTML
45 lines
1.7 KiB
HTML
<!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.0">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/4.6.2/css/bootstrap.min.css"
|
|
integrity="sha512-rt/SrQ4UNIaGfDyEXZtNcyWvQeOq0QLygHluFQcSjaGB04IxWhal71tKuzP6K8eYXYB6vJV4pHkXcmFGGQ1/0w=="
|
|
crossorigin="anonymous" referrerpolicy="no-referrer" />
|
|
<link rel="stylesheet" href="style.css">
|
|
<title>Weather App</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container my-5 mx-auto">
|
|
|
|
<h1 class="text-muted text-center my-4">My Weather App</h1>
|
|
<form action="" class="change-location my-4 text-center text-muted">
|
|
<label for="city">Enter a location for weather 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">
|
|
<div class="icon bg-light mx-auto text-center">
|
|
<img src="">
|
|
</div>
|
|
<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> |