-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
93 lines (88 loc) · 2.35 KB
/
test.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
<!DOCTYPE html>
<html>
<head>
<title>List of U.S. Presidents</title>
</head>
<body>
<h1>List of U.S. Presidents</h1>
<p>
The President of the United States is the head of state and the head of
government of the United States, serving as the country's chief executive.
Since the establishment of the presidency in 1789, there have been a total
of 46 individuals who have served as the President of the United States.
</p>
<h2>List of Presidents</h2>
<table>
<tr>
<th>#</th>
<th>Name</th>
<th>Term</th>
</tr>
<tr>
<td>1</td>
<td>George Washington</td>
<td>1789-1797</td>
</tr>
<tr>
<td>2</td>
<td>John Adams</td>
<td>1797-1801</td>
</tr>
<tr>
<td>3</td>
<td>Thomas Jefferson</td>
<td>1801-1809</td>
</tr>
<tr>
<td>4</td>
<td>James Madison</td>
<td>1809-1817</td>
</tr>
<tr>
<td>5</td>
<td>James Monroe</td>
<td>1817-1825</td>
</tr>
<tr>
<td>6</td>
<td>John Quincy Adams</td>
<td>1825-1829</td>
</tr>
<tr>
<td>7</td>
<td>Andrew Jackson</td>
<td>1829-1837</td>
</tr>
<tr>
<td>8</td>
<td>Martin Van Buren</td>
<td>1837-1841</td>
</tr>
<tr>
<td>9</td>
<td>William Henry Harrison</td>
<td>1841</td>
</tr>
<tr>
<td>10</td>
<td>John Tyler</td>
<td>1841-1845</td>
</tr>
<!-- Continue with the remaining presidents -->
</table>
<p>
Note: The table includes only the first 10 presidents. Please refer to the
full list on the official United States government websites or reputable
historical sources for the complete list of U.S. presidents.
</p>
<h2>Conclusion</h2>
<p>
The list above provides a glimpse into the first 10 Presidents of the
United States. Each president has played a crucial role in shaping the
nation's history and has contributed to the development of the United
States as a global power. For an exhaustive and up-to-date list of all
U.S. presidents, it is advisable to consult reliable historical references
and official government sources.
</p>
</body>
</html>