Webpage Design Submission
Webpage Design Submission
<h3>HTML</h3>
<pre>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Login Page</title>
</head>
<body>
<div class="container">
<div class="left-section">
</div>
<div class="right-section">
<h2>LOGIN</h2>
<label for="username">Username</label>
<label for="password">Password</label>
<div class="remember-me">
</div>
<button type="submit">Login</button>
<div class="signup">
</div>
<div class="social-login">
<p>Logar com</p>
<div class="social-icons">
<img
src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAEACAIAAADTED8xAAABtElEQVR42u3RAQ0
AAAjDMO5fN4AAkFBIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...
<h3>CSS</h3>
<pre>
body {
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
.container {
display: flex;
background-color: white;
border-radius: 10px;
overflow: hidden;
.left {
flex: 1;
.left img {
width: 100%;
height: 100%;
.right {
flex: 1;
padding: 40px;
display: flex;
flex-direction: column;
justify-content: center;
.right h2 {
text-align: center;
h2 {
margin: 0 0 20px;
.input-container {
margin-bottom: 15px;
label {
display: block;
margin-bottom: 5px;
font-weight: bold;
input[type="text"], input[type="password"] {
padding: 10px;
margin-bottom: 10px;
border-radius: 5px;
.remember-me {
display: flex;
align-items: center;
margin-bottom: 20px;
.remember-me input {
margin-right: 10px;
button {
width: 100%;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
button:hover {
background-color: #0056b3;
.signup {
text-align: center;
margin-top: 20px;
.signup a {
color: #007bff;
text-decoration: none;
.signup a:hover {
text-decoration: underline;
.social-login {
margin-top: 20px;
text-align: center;
.social-login p {
margin: 0;
.social-icons {
display: flex;
justify-content: center;
gap: 15px;
margin-top: 10px;
.social-icons img {
width: 30px;
height: 30px;
cursor: pointer;
</pre>