Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <title>Login</title>
- <link rel="stylesheet" href="../latihan/fontawesome/css/all.min.css">
- <style>
- body{
- background: #14214d;
- }
- .left{
- margin-left: 200px;
- margin-top: 200px;
- width: 500px;
- height: 400px;
- background: #44c7f5;
- float: left;
- color: white;
- font-family: Arial, Helvetica, sans-serif;
- padding-left: 50px;
- padding-top: 100px;
- }
- .left h1{
- font-size: 40px;
- }
- .left input[type=radio] {
- border: 0px;
- width: 30px;
- height: 2em;
- border: none;
- outline: none;
- }
- .left span{
- font-size: 30px;
- margin-top: 0px;
- }
- .right{
- padding-left: 50px;
- padding-top: 100px;
- margin-top: 200px;
- width: 500px;
- height: 400px;
- background: #ffffff;
- float: left;
- }
- .right h1{
- color: #44c7f5;
- font-family: Arial, Helvetica, sans-serif;
- }
- .right input[type=text]{
- width: 300px;
- padding: 20px;
- border-left: transparent;
- border-right: transparent;
- border-top: transparent;
- border-bottom: 1px solid #8a8686;
- }
- </style>
- </head>
- <body>
- <div class="left">
- <h1>Login Static Form</h1>
- <input type="radio"> <span>Pilihan 1</span>
- <br>
- <input type="radio"> <span>Pilihan 1</span>
- <br>
- <input type="radio"> <span>Pilihan 1</span>
- </div>
- <div class="right">
- <h1>Login</h1>
- <input type="text" placeholder="Email">
- <br>
- <input type="text" placeholder="Password">
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment