-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContacts.html
42 lines (42 loc) · 1.07 KB
/
Contacts.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
39
40
41
42
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contacts</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<h3>My Contacts</h3>
<ol>
<li>My Fake Adress</li>
<li>8670485624</li>
<li>[email protected]</li>
</ol>
<form class="" action="index.html" method="post">
<table>
<tr>
<td><label>Your Name : </label></td>
<td><input type="text"></td>
</tr>
<tr>
<td><label>Password : </label></td>
<td><input type="password" name=""></td>
</tr>
<tr>
<td><label>Enter your date of birth : </label></td>
<td><input type="date"></td>
</tr>
<tr>
<td><label>Choose your profile picture : </label></td>
<td><input type="file"></td>
</tr>
<tr>
<td><label>Do you want your password to be saved ? </label></td>
<td><input type="checkbox"></td>
</tr>
<tr>
<td><input type="submit" name="" ></td>
</tr>
</table>
</body>
</html>