-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (40 loc) · 808 Bytes
/
index.html
File metadata and controls
40 lines (40 loc) · 808 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<title>tag-tabel</title>
</head>
<body>
<table border="1" style="width: 50%;">
<thead>
<tr>
<th>PERSONAL INFO</th>
</tr>
</thead>
<tbody>
<tr>
<th align="left">Property</th>
<th align="left">Value</th>
</tr>
<tr>
<td>First name:</td>
<td>Solomiya</td>
</tr>
<tr>
<td>Last name:</td>
<td>Kushniryk</td>
</tr>
<tr>
<td>Email:</td>
<td>kushniryksolomiya@gmail.com</td>
</tr>
<tr>
<td rowspan="2">Phone:</td>
<td>555-555-555-1</td>
</tr>
<tr>
<td>555-555-555-2</td>
</tr>
</tbody>
</table>
</body>
</html>