html
html
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
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<meta name="viewport" content= "width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Quicksand&display=swap" rel="stylesheet">
</head>
<body>
<form class="container">
<div class="card">
<div class="left">
<div class="info">
<div class="title">SAOLM</div>
<div class="text">Prosent justo sapien, aliquet a pharetra vitae</div>
</div>
<div class="right">
<header class="header">LOGIN</header>
<input type="text" id="username" placeholder="USERNAME" />
<input type="password" id="password" placeholder="PASSWORD" />
<input type="submit" value="LOGIN" />
<a href="#">Sign Up</a>
</div>
</div>
</div>
</form>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
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
* { box-sizing: border-box; }
html, body { height: 100% }
body {
margin: 0;
width: 100%;
font-family: 'Quicksand', sans-serif;
font-size: 12px;
}
.container {
display: flex;
background: linear-gradient(to right, #55336F, #55336F 50%, #B64F9E 50%, #B64F9E);
width: 100%;
height: 100%;
justify-content: center;
align-items: center;
}
.card {
width: 90vw;
height: 45vw;
background: #fff;
}
.left {
width: 100%;
height: 100%;
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run