scrimba
Responsive Design
Better style
The basics of styling form
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

The basics of styling form
AboutCommentsNotes
The basics of styling form
Expand for more info
index.html
run
preview
console
<html>
<head>
</head>
<body>
<h1>forms!</h1>
<form action="#" method="post">
<label>
<input type="text" required placeholder="Enter your first name">
</label>
<br>
<input aria-label="last name" id="lname" type="text" required placeholder="Enter your last name">
<br>

<input id="email" type="email" required placeholder="email">
<button type="submit">Send away!</button>
</form>
</body>
</html>
Console
index.html
-5:11