-
Notifications
You must be signed in to change notification settings - Fork 0
/
task3.html
67 lines (60 loc) · 1.83 KB
/
task3.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Registration form</title>
<link rel="stylesheet" href="task3.css">
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Thai+Looped:wght@600&family=Raleway:wght@100&family=Roboto:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<form>
<table class="table">
<tr>
<td>Name:</td>
</tr>
<tr id="button">
<td><input type="text" id="name"></td>
</tr>
<tr>
<td>Age:</td>
</tr>
<tr id="button">
<td> <input type="number" id="age"></td>
</tr>
<tr>
<td>City:</td>
</tr>
<tr id="button">
<td><input type="text" id="city"></td>
</tr>
<tr>
<td>Email:</td>
</tr>
<tr>
<td><input type="text" id="email"></td>
</tr>
<tr>
<td>Skills:</td>
</tr>
<tr id="button">
<td><input type="text" id="skills"></td>
</tr>
<tr>
<td><button type="button" id="add">ADD</button></td>
</tr>
</table>
</form>
<table class="table2" style="width:500px" id="display">
<tr id="header">
<th>Name</th>
<th>Age</th>
<th>Country</th>
<th>Email</th>
<th>Skills</th>
</tr>
</table>
<script src="task3.js"></script>
</body>
</html>