-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrick10.html
25 lines (20 loc) · 890 Bytes
/
trick10.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Input Validation</title>
<link rel="stylesheet" href="trick10.css">
</head>
<body>
<div class="inputs">
<h1>css :invalid sudo class use for check condition applied in input tags </h1>
<label for="id">only number</label>
<input type="text" name="text" class="input" pattern="\d+" placeholder="Numbers only pattern">
<label for="name"> only name</label>
<input type="text" name="text" class="input" pattern="[a-zA-Z]+" placeholder="Letters only">
<label for="text">only number and letter</label>
<input type="text" name="text" class="input" pattern="^[a-zA-Z0-9]+$" placeholder="Letters and numbers">
</div>
</body>
</html>