-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (49 loc) · 2.15 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!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">
<!-- Primary Meta Tags -->
<title>Weather App</title>
<meta name="title" content="Weather App">
<meta name="description" content="Weather app to see current weather and temperatures in your city.">
<meta name="theme-color" content="#7c7c7c6b">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://gifaldyazka.is-a.dev/weather">
<meta property="og:title" content="Weather App">
<meta property="og:description" content="Weather app to see current weather and temperatures in your city.">
<meta property="og:image" content="https://cdn.upload.systems/uploads/QusUO02n.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://gifaldyazka.is-a.dev/weather">
<meta property="twitter:title" content="Weather App">
<meta property="twitter:description" content="Weather app to see current weather and temperatures in your city.">
<meta property="twitter:image" content="https://cdn.upload.systems/uploads/QusUO02n.png">
<!-- Load the CSS and JS -->
<link rel="stylesheet" href="css/style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap">
<script src="js/script.js" defer></script>
<title>Weather App</title>
</head>
<body>
<div class="card">
<div class="search">
<input type="text" class="search-bar" placeholder="Search">
<button>Go</button>
</div>
<div class="weather laoding">
<h2 class="city"></h2>
<h1 class="temp"></h1>
<div class="flex">
<img src="" alt="" class="icon" />
<div class="description"></div>
</div>
<div class="humidity"></div>
<div class="wind"></div>
</div>
</div>
</body>
</html>