-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (80 loc) · 2.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Table</title>
</head>
<body>
<a href="index2.html">Task 2</a>
<a href="index3.html">Task 3</a>
<a href="index4.html">Task 4</a>
<b>Name :ubaid ullah</b><br>
<b>Roll no:7142</b><br>
<b>Age:13</b><br>
<b>class:7</b> <br><br>
<p><hr>
<b>TABLES</b>
<hr></p>
<h1>CSS Styles</h1>
<p>
The CSS border properties allow you to specify the style, width, and color of an element's border the css see below feclites such as autosizing and rotation<br>The effect depends on the border-color value Here we will show one HTML page displayed with four different stylesheets css styles
<br>This is a demonstration of how different stylesheets can change the layout of your HTML page.</p>
<table border="1">
<tr>
<td style="width: 100px;">Row 1</td>
<td>This is data</td>
<td>This is data</td>
</tr>
<tr>
<td style="height: 200px;">
Row 2
</td>
<td>This is data p <br>
This is data out of p <br>
<b style="font-size: 30px;">This is bold data p</b> <br>
This is bold it out of p <br>
This is bold it out of p <br>
This is bold data out <br>
This is data div <br>
<b style="font-size: 30px;">List in a Table</b> <br>
This is data out of div <br>
<b>This is data div </b><br>
This is data out of div <br></td>
<td>More data <br>
<b style="font-size: 19px;">This a large text</b>
</td>
</tr>
<tr>
<td>Row 3</td>
<td>This is long data</td>
<td>This is data</td>
</tr>
<tr>
<td>Row 4 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>
</body>
</html>