Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Weather-App/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules/
2 changes: 1 addition & 1 deletion Weather-App/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ app.listen(5000, function () {
console.log("server started at port : 5000");
});


app.use('/static', express.static('static'))
17 changes: 11 additions & 6 deletions Weather-App/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,21 @@
<head>
<meta charset="utf-8">
<title>WeatherApp</title>
<link rel="stylesheet" href="/static/css/style.css">
</head>

<body>
<h1>Weather App</h1>
<div class="container">

<form action="/" method="post">
<label for="cityInput">Enter any city : </label>
<input id="cityInput" type="text" name="cityName">
<button type="subimt">Submit</button>
</form>
<div class="city">
<h1>Weather App</h1>
<form action="/" method="post">
<label for="cityInput">Enter any city : </label>
<input id="cityInput" type="text" name="cityName">
<button type="subimt">Submit</button>
</form>
</div>
</div>
</body>

</html>
58 changes: 58 additions & 0 deletions Weather-App/static/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background: #222;
font-family: 'Open Sans', sans-serif;
background-image: url('https://source.unsplash.com/1600x900/?landscape');
font-size: 120%;
}

body {
background-color: black;
color: #fff;
}

button {
margin: .7em;
padding: 0.5rem;
border-radius: 1rem;
border: none;
outline: none;
background: #393232d7;
color: whitesmoke;
cursor: pointer;
transition: 0.2s ease-in-out;
}

.container {
display: flex;
padding: 2rem;
background: #000000d0;
border-radius: 30px;
width: 100%;
max-width: 420px;
}

.container .city {
justify-content: center;
align-items: center;
}

.container .city h1 {
display: flex;
justify-content: center;
align-items: center;
}

.container .city #cityInput {
border: none;
outline: none;
padding: 0.4em;
border-radius: 24px;
background: #7c7c7c2b;
color: whitesmoke;
font-family: inherit;
}
⚔