-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwe.html
More file actions
76 lines (72 loc) · 2.5 KB
/
we.html
File metadata and controls
76 lines (72 loc) · 2.5 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en-US">
<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" />
<meta name="description" content="Welcome to By Grace Design " />
<!--WhoCreated-->
<meta name="author" content="SergioJCerritos => UnbelizeableWebDesign" />
<!--FavIcon-->
<link rel="shortcut icon" href="./assets/Favico.ico" type="image/x-icon" />
<link rel="apple-touch-icon" href="./assets/Favico.ico" />
<!--SEO-->
<meta name="robots" content="index,follow" />
<meta property="og:title" content="Welcome to My Weather-APP Project:)" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://sergjcerro.github.io/Weather/" />
<meta
property="og:description"
content="Weather APP By SergioJCerritos => UnbelizeableWebDesign "
/>
<meta property="og:image" content="./assets/Logo512.png" />
<meta name="twitter:card" content="summary" />
<!--Fonts wil be Called in the CSS
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&display=swap"
rel="stylesheet" />-->
<!--BoxIcons-->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/boxicons@latest/css/boxicons.min.css"
/>
<!--Style-->
<link rel="stylesheet" href="./css/style.css" />
<!--Manifest-->
<link rel="manifest" href="./manifest.json" />
<title>Weather-APP</title>
</head>
<body onload="change()">
<header>
<h1 class="today_date">
<u><span id="Date"></span></u>
</h1>
<form>
<div class="form-group">
<div class="submit-btn">
<i class='bx bx-search-alt'></i>
</div>
<input type="text" placeholder="Search city" />
<br />
<span class="error-msg">No matching location found!</span>
</div>
</form>
</header>
<main>
<div class="main-weather-display info">
<div class="general-info">
<p class="condition">MOSTLY SUNNY</p>
<h1 class="location">GUANGZHOU, CHINA</h1>
<p> <span class="degrees">69</span> </p>
</div>
<div class="weather-details info">
<p class="feels-like">FEELS LIKE: 70</p>
<p class="wind-mph">WIND: 5 MPH</p>
<p class="humidity">HUMIDITY: 69</p>
</div>
</div>
</div>
</main>
<script src="./js/script.js"></script>
</body>
</html>