-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (59 loc) · 1.9 KB
/
Copy pathindex.html
File metadata and controls
68 lines (59 loc) · 1.9 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>"Services"</title>
</head>
<body>
<header></header>
<h2>Our Services</h2>
<p>
Anim qui irure ost oxercitation asso nisi
maana exercitation nisi amet aliavio duis.
Qui et tempor ipsum et in laboris aute
incididunt laborum consectetur mollit est.</p>
<p>Occaecat sit ea dolor reprehenderit
occaecar in laborum commodo.</p>
<ul><li>ld et irure deserunt</li>
<li>labore pariatur occaecat ex magna</li>
<li>Magna anim incididunt aliquip nostrud commodo aborum reprehenderit est.</li>
</ul>
<h2>Candidates</h2>
<p>Occaecat sit ea dolor reprehenderit occaecat in laborum commodo. Id et irure deserunt labore pariatur occaecat ex magna. Magna anim incididunt aliquip
nostrud commodo laborum reprehenderit est.</p>
<table>
<tr>
<th>ID</th>
<th>NAME</th>
<th>ROLE</th>
<th>ACTIONS</th>
</tr>
<tr>
<td>1</td>
<td>Max Mendes</td>
<td>Designer</td>
<td><button>View</button></td>
</tr>
<tr>
<td>2</td>
<td>Dane Silkorsky</td>
<td>Product Manager</td>
<td><button>View</button></td>
</tr>
<tr>
<td>3</td>
<td>Jenifer Quitchback</td>
<td>QA Engineer</td>
<td><button>View</button></td>
</tr>
<tr>
<td>4</td>
<td>Gustav Mendes</td>
<td>Frontend</td>
<td><button>View</button></td>
</tr>
</table>
<footer>© 2023 My Company London, All rights reserved</footer>
</body>
</html>