-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspan.html
47 lines (38 loc) · 1.12 KB
/
span.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
<!DOCTYPE html>
<html>
<head>
<title>Stretching table columns and rows</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<!-- In this section I am going to learn about stretching table columns and rows. The example cited is a portio of the income statement for one of the major social media site(s) -->
<body>
<tr>
<td colspan="2">
<strong> Total Revenue</strong>
</td>
<td>
<strong>7,872,000</strong>
</td>
<td>
<strong>5,089,000</strong>
</td>
<td>
<strong>3,711,000</strong>
</td>
</tr>
<hr width="36.77777%">
<!--Alright, we are going to use the same file. This example (below) makes use of the table align attribute, which may very well have been depreciated by now. But, let's try and see if the code renders anything -->
<p></p>
<h4 align="center">Musical score(s)</h4>
<!-- Note: I did create a table - vertical-align value in the style.css file. But it doesn't look like it's working -->
<table align="center" width="50%" border="1">
<tr>
<td>Henry Mancini</td>
<td>Pink Panther</td>
</tr>
<tr>
<td>John Williams</td>
<td>Star Wars</td>
</tr>
</body>
</html>