Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
2024Perezlaureano authored Dec 21, 2024
1 parent 730beb9 commit 4d92412
Show file tree
Hide file tree
Showing 3 changed files with 80 additions and 0 deletions.
Binary file added invento/img/22.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
56 changes: 56 additions & 0 deletions invento/login.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
*{
margin: 0%;
padding: 0;
font-family: cursive;

}
header{
text-align: center;
}
h1{
color: blue;

}
div{
width: 90%;
height: 250px;
margin: 20px;
line-height: 3;
background-color: #ddd;
border: solid;
border-radius: 20px;
border-color: rgb(241, 16, 16);
}
img:hover{
width: 200px;
}
input{
margin: 10px;
color: blue;
text-align: center;
border-color: aquamarine;
position: relative;
left: 10%;

}
button{

position: relative;
left: 50%;
background-color: red;
color: white;
width: 70px;
padding: 3px;
border-radius: 5px;
top: 80px;
}
button:hover{
background-color: blue;

}
form{
background-color: rgb(147, 104, 204);
border-radius: 15px;
position: relative;
top: 30px;
}
24 changes: 24 additions & 0 deletions invento/login.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<link rel="stylesheet" href="login.css">
</head>
<body>
<header>
<h1>B <b style="color: red;">r</b></h1>
</header>
<div>
<form action="">
<input placeholder="email" type="email" name="" id="">
<input placeholder="password" type="password" name="" id="">
</form>
<button type="submit">Entrar</button>
<img style="position: absolute;
bottom: 300px;;" width="100" src="img/22.png" alt="">
</div>

</body>
</html>

0 comments on commit 4d92412

Please sign in to comment.