-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (79 loc) · 2.39 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML TASK 1</title>
</head>
<body>
<a href="index.html">Task 1</a>
<a href="html-task-2.html">Task 2</a>
<a href="html-task-3.html">Task 3</a>
<a href="html-task-4.html">Task 4</a>
<center>
<hr>
<h1>Tables</h1>
<hr>
<h1>CSS Styles</h1>
<br><br>
<p>The CSS properties for tables and cells is increased over that in html2pdf. It includes recognition of THEAD, TH, and allows property of backgroud-color to be set for TR. <br>See below for other facilities such as autosizing, and rotation.</p>
<br><br>
<table border="1">
<tr>
<th>Row 1</th>
<th>This is data</th>
<th>This is data</th>
</tr>
<tr>
<td>Row 2</td>
<td>This is data p <br>
This is data out of p <br>
<b>This is bold data p</b> <br>
<b>This is bold data out of p</b> <br>
This is normal data after br <br>
<h1>Lists in a table</h1><br>
This is a data div <br>
This is data out of div <br>
<b>This is data div</b> <br>
This is data out of div
</td>
<td>More data <br> <h1>This is large text</h1></td>
</tr>
<tr>
<td>Row 3</td>
<td>This is long data</td>
<td>This is data</td>
</tr>
<tr>
<td>Row 4 <td> cell</td>
<td>This is data</td>
<td>This is data</td>
</tr>
<tr>
<td>Row 5</td>
<td>Also data</td>
<td>Also data</td>
</tr>
<tr>
<td>Row 6</td>
<td>Also data</td>
<td>Also data</td>
</tr>
<tr>
<td>Row 7</td>
<td>Also data</td>
<td>Also data</td>
</tr>
<tr>
<td>Row 8</td>
<td>Also data</td>
<td>Also data</td>
</tr>
</table>
<h1>Muhammad Arham Ali Khan <br>
Roll No 4277
</h1>
</center>
</body>
</html>