-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHTML-formattributes.html
38 lines (38 loc) · 1.17 KB
/
HTML-formattributes.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
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<title>HTML Form Attributes</title>
</head>
<body>
<div>
<h1>Exercise 1</h1>
<p>In the input field below, add placeholder that says "Your name here".</p>
<form action="https://github.com/zero-to-mastery/complete-web-developer-manual">
<input type="text" placeholder="Your name here">
</form>
</div>
<div>
<h1>Exercise 2</h1>
<p>Disable input field below.</p>
<form action="https://github.com/zero-to-mastery/complete-web-developer-manual">
<input type="text" disabled>
</form>
</div>
<div>
<h1>Exercise 3</h1>
<p>Set the max numbers of characters allowed in the input field to 40.</p>
<form action="https://github.com/zero-to-mastery/complete-web-developer-manual">
<input type="text" maxlength="40">
</form>
</div>
<div>
<h1>Exercise 4</h1>
<p>Set the input field to be read only (meaning that the value cannot be changed).</p>
<form action="https://github.com/zero-to-mastery/complete-web-developer-manual">
<input type="text" readonly>
</form>
</div>
<a href="index.html">
<h2>Go Back</h2>
</body>
</html>