-
Notifications
You must be signed in to change notification settings - Fork 10
/
tabledemo.html
83 lines (77 loc) · 1.89 KB
/
tabledemo.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style>
.sam{
font-decoration:underline;
font-family:"Comic Sans MS", cursive;
font-size:36px;
background:#FF6;
font-style:italic;
color:#F00;
text-align:center;
}
#sam{
font-size:26px;
color:#F6C;
font-family:"Lucida Console", Monaco, monospace;
font-style:oblique;
background:#CFF;
font-decoratio:overline;
}
table{
border:5px #009 solid;
width:50%;
background:#FF6;
height:550px;
}
table tr td{
border:#0F0 solid 3px;
text-align:center;
background:#F69;
}
</style>
</head>
<body background="toronto1.jpg">
<h1 class="sam" id="sam">Welcome to My Website</h1>
<h1 id="sam">Created By:Sanchit Singhal</h1>
<h2>Student of Btech 1 year</h2>
<h4>Studied at ABES Engineering College,Ghaziabad</h4>
<table align="center">
<tr>
<td style="background:#999;">SANCHIT</td>
<td>SANCHIT</td>
<td style="background:#999;">SANCHIT</td>
<td>SANCHIT</td>
<td style="background:#999;">SANCHIT</td>
<td>SANCHIT</td>
</tr>
<tr>
<td>SANCHIT</td>
<td style="background:#999;">SANCHIT</td>
<td>SANCHIT</td>
<td style="background:#999;">SANCHIT</td>
<td>SANCHIT</td>
<td style="background:#999;">SANCHIT</td>
</tr>
<tr>
<td style="background:#999;">SANCHIT</td>
<td>SANCHIT</td>
<td style="background:#999;">SANCHIT</td>
<td>SANCHIT</td>
<td style="background:#999;">SANCHIT</td>
<td>SANCHIT</td>
</tr>
<tr>
<td>SANCHIT</td>
<td style="background:#999;">SANCHIT</td>
<td>SANCHIT</td>
<td style="background:#999;">SANCHIT</td>
<td>SANCHIT</td>
<td style="background:#999;">SANCHIT</td>
</tr>
</table>
</body>
</html>