-
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
1 parent
48d2c66
commit a95e662
Showing
5 changed files
with
101 additions
and
82 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 |
---|---|---|
@@ -1,40 +1,43 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>Weather App</title> | ||
<link rel="stylesheet" type="text/css" href="weather-app/style.css"> | ||
</head> | ||
<body> | ||
<div class="card"> | ||
<div class="search"> | ||
<input type="text" placeholder="Enter City Name" spellcheck="false"> | ||
<button><img src="weather-app/img/search.png" alt="search icon"></button> | ||
</div> | ||
<div class="weather"> | ||
<img src="weather-app/rainy.png" alt="rainy" class="weather-icon"> | ||
<h1 class="temp">22°C</h1> | ||
<h2 class="city">New York</h2> | ||
<div class="details"> | ||
<div class="col"> | ||
<img src="weather-app/img/humidity.png"> | ||
<div> | ||
<p class="humidity">50%</p> | ||
<p>Humidity</p> | ||
</div> | ||
</div> | ||
<div class="col"> | ||
<img src="weather-app/img/wind.png"> | ||
<div> | ||
<p class="wind">12 Km/h</p> | ||
<p>Wind Speed</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<script src="weather-app/script.js"></script> | ||
</body> | ||
</html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<title>Weather App</title> | ||
<link rel="stylesheet" type="text/css" href="weather-app/style.css" /> | ||
<link rel="icon" type="image/png+jpj" href="weather-app\img\sun.png" /> | ||
</head> | ||
<body> | ||
<div class="card"> | ||
<div class="search"> | ||
<input type="text" placeholder="Enter City Name" spellcheck="false" /> | ||
<button> | ||
<img src="weather-app/img/search.png" alt="search icon" /> | ||
</button> | ||
</div> | ||
<div class="weather"> | ||
<img src="weather-app/rainy.png" alt="rainy" class="weather-icon" /> | ||
<h1 class="temp">22°C</h1> | ||
<h2 class="city">New York</h2> | ||
<div class="details"> | ||
<div class="col"> | ||
<img src="weather-app/img/humidity.png" /> | ||
<div> | ||
<p class="humidity">50%</p> | ||
<p>Humidity</p> | ||
</div> | ||
</div> | ||
<div class="col"> | ||
<img src="weather-app/img/wind.png" /> | ||
<div> | ||
<p class="wind">12 Km/h</p> | ||
<p>Wind Speed</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<script src="weather-app/script.js"></script> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -1,40 +1,41 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>Weather App</title> | ||
<link rel="stylesheet" type="text/css" href="style.css"> | ||
</head> | ||
<body> | ||
<div class="card"> | ||
<div class="search"> | ||
<input type="text" placeholder="Enter City Name" spellcheck="false"> | ||
<button><img src="img/search.png" alt="search icon"></button> | ||
</div> | ||
<div class="weather"> | ||
<img src="rainy.png" alt="rainy" class="weather-icon"> | ||
<h1 class="temp">22°C</h1> | ||
<h2 class="city">New York</h2> | ||
<div class="details"> | ||
<div class="col"> | ||
<img src="img/humidity.png"> | ||
<div> | ||
<p class="humidity">50%</p> | ||
<p>Humidity</p> | ||
</div> | ||
</div> | ||
<div class="col"> | ||
<img src="img/wind.png"> | ||
<div> | ||
<p class="wind">12 Km/h</p> | ||
<p>Wind Speed</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<script src="script.js"></script> | ||
</body> | ||
</html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<title>Weather App</title> | ||
<link rel="stylesheet" type="text/css" href="style.css" /> | ||
<link rel="icon" type="image/png+jpj" href="img\sun.png" /> | ||
</head> | ||
<body> | ||
<div class="card"> | ||
<div class="search"> | ||
<input type="text" placeholder="Enter City Name" spellcheck="false" /> | ||
<button><img src="img/search.png" alt="search icon" /></button> | ||
</div> | ||
<div class="weather"> | ||
<img src="rainy.png" alt="rainy" class="weather-icon" /> | ||
<h1 class="temp">22°C</h1> | ||
<h2 class="city">New York</h2> | ||
<div class="details"> | ||
<div class="col"> | ||
<img src="img/humidity.png" /> | ||
<div> | ||
<p class="humidity">50%</p> | ||
<p>Humidity</p> | ||
</div> | ||
</div> | ||
<div class="col"> | ||
<img src="img/wind.png" /> | ||
<div> | ||
<p class="wind">12 Km/h</p> | ||
<p>Wind Speed</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<script src="script.js"></script> | ||
</body> | ||
</html> |
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
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