-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (70 loc) · 1.52 KB
/
index.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
68
69
70
<!DOCTYPE html>
<html>
<head>
<title>cy.handsOn("count-table-row")</title>
<style>
* {
font-family: sans-serif;
}
table, thead, th, tbody, tr, td {
border: 1px solid black;
padding: 12px;
}
</style>
</head>
<body>
<table>
<thead>
<th>ID</th>
<th>Full name</th>
<th>Email</th>
<th>Phone number</th>
<th>Address</th>
</thead>
<tbody>
<tr>
<td>1</td>
<td>John Doe</td>
<td>[email protected]</td>
<td>5555555</td>
<td>Doe Avenue</td>
</tr>
<tr>
<td>2</td>
<td>Fred K.</td>
<td>[email protected]</td>
<td>(not provided)</td>
<td>(not provided)</td>
</tr>
<tr>
<td>3</td>
<td>Monica Beatriz</td>
<td>[email protected]</td>
<td>99889988</td>
<td>West Lake Street</td>
</tr>
<tr>
<td>4</td>
<td>Pedro Ramirez</td>
<td>[email protected]</td>
<td>999999999</td>
<td>(not provided)</td>
</tr>
<tr>
<td>5</td>
<td>Mr. Anderson</td>
<td>[email protected]</td>
<td>8888889</td>
<td>Xirtam Avenue</td>
</tr>
<tr>
<td>6</td>
<td>Bilbo B.</td>
<td>[email protected]</td>
<td>(not provided)</td>
<td>Shire</td>
</tr>
</tbody>
</table>
</body>
</html>