-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnew.html
More file actions
26 lines (23 loc) · 793 Bytes
/
new.html
File metadata and controls
26 lines (23 loc) · 793 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Registration</title>
<link rel="stylesheet" href="./new.css">
<script src="new.js"></script>
</head>
<body>
<div class="bavan">
<input type="text" name="" id="inp1" placeholder="First name"><br>
<input type="text" name="" id="inp2" placeholder="Last name"><br>
<input type="email" name="" id="inp3" placeholder="Email"><br>
<input type="password" name="" id="inp4" placeholder="Password"><br>
<button onclick="registration()">Submit</button>
</div>
<p id="para1"></p>
<p id="para2"></p>
<p id="para3"></p>
<p id="para4"></p>
</body>
</html>