-
Notifications
You must be signed in to change notification settings - Fork 60
/
4_styled.html
115 lines (105 loc) · 3.09 KB
/
4_styled.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<!-- Declaration represents document type.it appears at the top of page -->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
#table_div {
margin-top: 10px;
text-align: center;
}
h3 {
margin-top: 50px;
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
tr:nth-child(even) {
background-color: #dddddd;
}
.left{
float:left;
width:33%;
font-size: 20px;
}
</style>
</head>
<body>
<div>
<h1 style="text-align:center;">HTML TABLES</h1>
<div id="table_div">
<table cellpadding = "10" cellspacing = "10" style="margin-left: auto;margin-right: auto;">
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
</tr>
<tr>
<td rowspan = "2">Row 1 Cell 1</td>
<td>Row 1 Cell 2</td>
<td>Row 1 Cell 3</td>
</tr>
<tr>
<td>Row 2 Cell 2</td>
<td>Row 2 Cell 3</td>
</tr>
<tr>
<td colspan = "3">Row 3 Cell 1</td>
</tr>
</table>
</div>
</div>
<div>
<h1 style="text-align:center;margin-top: 50px;">HTML LISTS</h1>
<div style="display: inline;">
<div class="left" style="margin-left: 100px;">
<h3>Description List</h3>
<dl>
<div>
<dt>Name</dt>
<dd>Godzilla</dd>
</div>
<div>
<dt>Born</dt>
<dd>1952</dd>
</div>
<div>
<dt>Birthplace</dt>
<dd>Japan</dd>
</div>
<div>
<dt>Color</dt>
<dd>Green</dd>
</div>
</dl>
</div>
<div class="left" style="margin-left: -100px;">
<h3>Ordered List</h3>
<ol>
<li>Chapter One
<ol style="list-style-type: lower-alpha;">
<li>Section One</li>
<li>Section Two </li>
<li>Section Three </li>
</ol>
</li>
<li>Chapter Two</li>
<li>Chapter Three </li>
</ol>
</div>
<div class="left">
<h3>Unordered List</h3>
<ul>
<li>bread</li>
<li>coffee beans</li>
<li>milk</li>
<li>butter</li>
</ul>
</div>
</div>
</div>
</body>
</html>