Spaces:
Sleeping
Sleeping
Update contacts.html
Browse files- contacts.html +42 -42
contacts.html
CHANGED
@@ -1,53 +1,53 @@
|
|
1 |
<!doctype html>
|
2 |
<html lang="en">
|
3 |
-
|
4 |
<meta charset="utf-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
6 |
<title>Contacts</title>
|
7 |
<style>
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
</style>
|
21 |
-
|
22 |
-
|
23 |
<h1>Contacts</h1>
|
24 |
<table>
|
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 |
</table>
|
52 |
-
|
53 |
</html>
|
|
|
1 |
<!doctype html>
|
2 |
<html lang="en">
|
3 |
+
<head>
|
4 |
<meta charset="utf-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
6 |
<title>Contacts</title>
|
7 |
<style>
|
8 |
+
table {
|
9 |
+
width: 70%;
|
10 |
+
border-collapse: collapse;
|
11 |
+
}
|
12 |
+
th, td {
|
13 |
+
border: 1px solid black;
|
14 |
+
padding: 8px;
|
15 |
+
text-align: left;
|
16 |
+
}
|
17 |
+
th {
|
18 |
+
background-color: #f2f2f2;
|
19 |
+
}
|
20 |
</style>
|
21 |
+
</head>
|
22 |
+
<body>
|
23 |
<h1>Contacts</h1>
|
24 |
<table>
|
25 |
+
<tr>
|
26 |
+
<th>Name</th>
|
27 |
+
<th>Email</th>
|
28 |
+
<th>Phone</th>
|
29 |
+
<th>PR1</th>
|
30 |
+
<th>PR2</th>
|
31 |
+
<th>PR3</th>
|
32 |
+
<th>PR4</th>
|
33 |
+
<th>PR5</th>
|
34 |
+
<th>Date</th>
|
35 |
+
<th>Time</th>
|
36 |
+
</tr>
|
37 |
+
{% for contact in contacts %}
|
38 |
+
<tr>
|
39 |
+
<td>{{ contact[0] }}</td>
|
40 |
+
<td>{{ contact[1] }}</td>
|
41 |
+
<td>{{ contact[2] }}</td>
|
42 |
+
<td>{{ contact[3] }}</td>
|
43 |
+
<td>{{ contact[4] }}</td>
|
44 |
+
<td>{{ contact[5] }}</td>
|
45 |
+
<td>{{ contact[6] }}</td>
|
46 |
+
<td>{{ contact[7] }}</td>
|
47 |
+
<td>{{ contact[8] }}</td>
|
48 |
+
<td>{{ contact[9] }}</td>
|
49 |
+
</tr>
|
50 |
+
{% endfor %}
|
51 |
</table>
|
52 |
+
</body>
|
53 |
</html>
|