-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path08_table_tag.html
More file actions
95 lines (70 loc) · 2.69 KB
/
Copy path08_table_tag.html
File metadata and controls
95 lines (70 loc) · 2.69 KB
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
<!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>Star Wars - Wikipedia</title>
<!-- Get the full playlist from
YouTube.com/@skillnagar
-->
</head>
<body>
<h1>Star wars</h1>
<p>From Wikipedia, the free encyclopedia</p>
<img src="image.png" title="Star Wars Logo" alt="Star Wars Logo (alt attribute)"/>
<!-- <p><strong>Created By</strong> George Lucas</p>
<p><strong>Original work</strong> Star Wars</p>
<p><strong>Owner</strong> Lucasfilm Ltd.</p>
<p><strong>Years</strong> 1977–present</p> -->
<table>
<tr> <!-- (t)able (r)ow -->
<td><strong>Created By</strong></td>
<td>George Lucas</td>
</tr>
<tr> <!-- (t)able (r)ow -->
<td><strong>Original work</strong></td>
<td>Star Wars</td>
</tr>
<tr> <!-- (t)able (r)ow -->
<td><strong>Owner</strong></td>
<td>Lucasfilm Ltd.</td>
</tr>
<tr> <!-- (t)able (r)ow -->
<td><strong>Years</strong></td>
<td>1977 - present</td>
</tr>
</table>
<p>This article is about the media franchise as a whole. For the original 1977 film, see
<a href="https://en.wikipedia.org/wiki/Star_Wars_(film)">Star Wars (film)</a>.
For other uses, see Star Wars (disambiguation).</p>
<p>
<strong><em>Star Wars</em></strong> is an American epic space opera<sup><a href="https://en.wikipedia.org/wiki/Star_Wars#cite_note-3">[1]</a></sup> multimedia franchise created by George Lucas, which began with the eponymous 1977 film[b] and quickly became a worldwide pop-culture phenomenon. The franchise has been expanded into various films and other media, including television series, video games, novels, comic books, theme park attractions, and themed areas, comprising an all-encompassing fictional universe.[c] Star Wars is one of the highest-grossing media franchises of all time.
</p>
<h3>Contents</h3>
<ol> <!-- (o)rdered (l)ist -->
<li>Premise</li> <!-- (l)ist (i)tem -->
<li>Films
<ol>
<li>Thee Skywalker saga</li>
<li>Anthology films</li>
</ol>
</li>
<li>Television</li>
</ol>
<ul>
<li>Avinash</li>
<li>Iron Man</li>
<li>Spider Man</li>
<li>Batman</li>
</ul>
<!-- <p>
Avinash <sub>Seth</sub>
</p> -->
<!-- <h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6> -->
</body>
</html>