Skip to content

Commit

Permalink
10% WORKING DONE
Browse files Browse the repository at this point in the history
  • Loading branch information
MKAIF5 committed May 10, 2024
1 parent 85fcdd2 commit f928059
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 9 deletions.
30 changes: 21 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WEATHER APP</title>
<link rel="stylesheet" href="style.css">
</head>
<body>

<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<main>
<form action="">
<input type="text" name="" id="" autocomplete="off" />
<button><i class="fa-solid fa-magnifying-glass"></i></button>
</form>
</main>
<script src="script.js"></script>
</body>
</html>
</body>
</html>
30 changes: 30 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
*{
margin: 0;
padding: 0;
}

body{
margin: 0;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-image: url('https://images.pexels.com/photos/1118873/pexels-photo-1118873.jpeg?cs=srgb&dl=pexels-jplenio-1118873.jpg&fm=jpg');
font-family: sans-serif;
background-size: cover;
}

main{
width: 300px;
height: max-content;
min-height: 300px;
background-color: #f7f7f7;
border-radius: 30px;
box-shadow: 0px 30px 50px #5553;
padding: 30px;
box-sizing: border-box;
}

main form{

}

0 comments on commit f928059

Please sign in to comment.