Skip to content

Commit 812f75d

Browse files
authored
Add New Icons
1 parent 88ab193 commit 812f75d

10 files changed

+18
-8
lines changed

README.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
# WeatherBox
1+
# WeatherBox
22

33
## About
4+
45
**Simple Weather App By Using OpenWeatherMap API & Custom Icons.**
5-
<br>
6-
<br>
7-
[CodePen🧑🏻‍💻](https://codepen.io/rudrasen2/pen/gOoQojr)
86

97
## Screenshot 🖼️
10-
![Screenshot](https://user-images.githubusercontent.com/91307601/166142269-185b829d-ee9f-4ee5-9c1f-8aa5ccdc661e.jpg)
8+
9+
<img src="https://api.microlink.io?url=https%3A%2F%2Fweatherbox.complabs.in&overlay.browser=dark&screenshot=true&meta=false&embed=screenshot.url"></img>
1110

1211
<br>
1312
</br>

apple-touch-icon.png

21.4 KB
Loading

favicon.ico

5.12 KB
Binary file not shown.

icon-192-maskable.png

24 KB
Loading

icon-192.png

24 KB
Loading

icon-512-maskable.png

92.5 KB
Loading

icon-512.png

93.4 KB
Loading

icon.png

25.4 KB
Loading

index.html

+5-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
<html lang="en" >
33
<head>
44
<meta charset="UTF-8">
5-
<title>WeatherBox</title>
5+
<title>WeatherBox</title>
66
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Roboto:300,400,700&amp;display=swap'>
77
<link rel="stylesheet" href="style.css">
8-
8+
<link rel="icon" href="/favicon.ico" sizes="any">
9+
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
910
</head>
1011
<body>
1112
<!-- partial:index.partial.html -->
@@ -15,7 +16,8 @@
1516
</div>
1617
<section class="top-banner">
1718
<div class="container">
18-
<h1 class="heading">WeatherBox ⛅</h1>
19+
<img src="./apple-touch-icon.png"></img>
20+
<h1 class="heading">WeatherBox </h1>
1921

2022
<form>
2123
<input type="text" placeholder="Search for a Place..." autofocus>

manifest.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"icons": [
3+
{ "src": "/favicon.ico", "type": "image/x-icon", "sizes": "16x16 32x32" },
4+
{ "src": "/icon-192.png", "type": "image/png", "sizes": "192x192" },
5+
{ "src": "/icon-512.png", "type": "image/png", "sizes": "512x512" },
6+
{ "src": "/icon-192-maskable.png", "type": "image/png", "sizes": "192x192", "purpose": "maskable" },
7+
{ "src": "/icon-512-maskable.png", "type": "image/png", "sizes": "512x512", "purpose": "maskable" }
8+
]
9+
}

0 commit comments

Comments
 (0)