Skip to content

Instantly share code, notes, and snippets.

@tisufa
Last active July 26, 2019 14:49
Show Gist options
  • Save tisufa/9d791b943fc249435733a412b643201e to your computer and use it in GitHub Desktop.
Save tisufa/9d791b943fc249435733a412b643201e to your computer and use it in GitHub Desktop.
<html>
<head>
<title>Desain Form Login Dengan Css</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="konten">
<div class="kepala">
<div class="lock"></div>
<h2 class="judul">Sign In</h2>
</div>
<div class="artikel">
<form action="#" method="post">
<div class="grup">
<label for="email">E-mail Address</label>
<input type="text" placeholder="Masukkan Alamat Email Anda">
</div>
<div class="grup">
<label for="password">Password</label>
<input type="password" placeholder="Masukkan password Anda">
</div>
<div class="grup">
<input type="submit" value="Sign In">
</div>
</form>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment