<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Basic controls: Task 1</title>
</head>
<body>
<form>
<ul>
<li>
<label for="id">User ID</label>
<input type="text" id="id" name="id">
</li>
<li>
<label for="pwd">Password</label>
<input type="password" id="pwd" name="pwd">
</li>
<li>
<button type="submit">log in</button>
</li>
</ul>
</form>
</body>
</html>
body {
background-color: #fff;
color: #333;
font: 1em / 1.4 Helvetica Neue, Helvetica, Arial, sans-serif;
padding: 1em;
margin: 0;
}
* {
box-sizing: border-box;
}
/*My work from here*/
li {
list-style: none;
padding-bottom: 1rem;
}
button {
padding: 0 1rem;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.