-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (91 loc) · 4.94 KB
/
index.html
File metadata and controls
98 lines (91 loc) · 4.94 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
96
97
98
<!doctype html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Bill of Rights</title>
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<style type="text/css">
body {
font-family: sans-serif;
margin: 0;
background-color: white;
padding: 0 2em;
}
header, footer, h2 {
text-align: center;
}
h2 a {
color: black;
text-decoration: none;
}
.icu {
color: grey;
}
p {
font-size: 1.25em;
margin: 1em 0;
}
h2 {
font-size: 2em;
margin: 0;
}
h1 {
font-size: 2.5em;
font-weight: light;
}
footer {
text-align: center;
}
</style>
</head>
<body>
<header>
<h1>BillOfRights<span class="icu">.icu</span></h1>
</header>
<main>
<section id="1">
<h2><a href="#1">Amendment I - Freedom of Speech</a></h2>
<p>Congress shall make no law respecting an establishment of religion, or prohibiting the free exercise thereof; or abridging the freedom of speech, or of the press; or the right of the people peaceably to assemble, and to petition the government for a redress of grievances.</p>
</section>
<section id="2">
<h2><a href="#2">Amendment II - Right to Bear Arms</a></h2>
<p>A well regulated militia, being necessary to the security of a free state, the right of the people to keep and bear arms, shall not be infringed.</p>
</section>
<section id="3">
<h2><a href="#3">Amendment III - Protecton from Quartering</a></h2>
<p>No soldier shall, in time of peace be quartered in any house, without the consent of the owner, nor in time of war, but in a manner to be prescribed by law.</p>
</section>
<section id="4">
<h2><a href="#4">Amendment IV - Protection from Unlawful Search and Seizure</a></h2>
<p>The right of the people to be secure in their persons, houses, papers, and effects, against unreasonable searches and seizures, shall not be violated, and no warrants shall issue, but upon probable cause, supported by oath or affirmation, and particularly describing the place to be searched, and the persons or things to be seized.</p>
</section>
<section id="5">
<h2><a href="#5">Amendment V - Right to Remain Silent</a></h2>
<p>No person shall be held to answer for a capital, or otherwise infamous crime, unless on a presentment or indictment of a grand jury, except in cases arising in the land or naval forces, or in the militia, when in actual service in time of war or public danger; nor shall any person be subject for the same offense to be twice put in jeopardy of life or limb; nor shall be compelled in any criminal case to be a witness against himself, nor be deprived of life, liberty, or property, without due process of law; nor shall private property be taken for public use, without just compensation.</p>
</section>
<section id="6">
<h2><a href="#6">Amendment VI - Right to a Fair and Speedy Trail</a></h2>
<p>In all criminal prosecutions, the accused shall enjoy the right to a speedy and public trial, by an impartial jury of the State and district wherein the crime shall have been committed, which district shall have been previously ascertained by law, and to be informed of the nature and cause of the accusation; to be confronted with the witnesses against him; to have compulsory process for obtaining witnesses in his favor, and to have the Assistance of Counsel for his defence.</p>
</section>
<section id="7">
<h2><a href="#7">Amendment VII - Right of Trail by Jury</a></h2>
<p>In suits at common law, where the value in controversy shall exceed twenty dollars, the right of trial by jury shall be preserved, and no fact tried by a jury, shall be otherwise reexamined in any court of the United States, than according to the rules of the common law.</p>
</section>
<section id="8">
<h2><a href="#8">Amendment VIII - Protection from Cruel and Unusual Punishment</a></h2>
<p>Excessive bail shall not be required, nor excessive fines imposed, nor cruel and unusual punishments inflicted.</p>
</section>
<section id="9">
<h2><a href="#9">Amendment IX - Additional Rights</a></h2>
<p>The enumeration in the Constitution, of certain rights, shall not be construed to deny or disparage others retained by the people.</p>
</section>
<section id="10">
<h2><a href="#10">Amendment X - States' Rights</a></h2>
<p>The powers not delegated to the United States by the Constitution, nor prohibited by it to the states, are reserved to the states respectively, or to the people.</p>
</section>
</main>
<footer>
<p>Website Created by <a href="https://dorper.me" title="Dorper">Carver Harrison</a>.</p>
</footer>
</body>
</html>