-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (57 loc) · 2.14 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Semaphore Court</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<nav>
<img src="./assets/images/semaphorecourtlogo.png" alt="Logo" id="logo">
<a href="jurorIdentifier.html" class="nav-button">Juror Identifier Generator</a>
<a href="cases.html" class="nav-button">Voting</a>
<a href="./groupGenerator.html" class="nav-button">Jury Group Generation</a>
</nav>
<main>
<div class="case-details">
<img src="./assets/images/background.jpg" alt="Legal theme image" class="case-image">
<div class="case-description">
<h1>Justice with Transparency</h1>
<p>A more private, safe and transparent jury voting process</p>
</div>
</div>
<div class="charges-section">
<article class="blog-entry">
<a href="./assets/Case1.html">
<img src="assets/images/dummyimage.jpg" alt="Dummy Image">
<h2>Smith v. Facebook</h2>
</a>
<p>Case Ref #: 001</p>
<p>Date: 01/01/2021</p>
</article>
<article class="blog-entry">
<a href="./assets/Case1.html">
<img src="assets/images/dummyimage.jpg" alt="Dummy Image">
<h2>Donald Trump v. USA</h2>
</a>
<p>Case Ref #: 002</p>
<p>Date: 01/01/2022</p>
</article>
</div>
</main>
<footer>
<div class="footer-content">
<div class="contact-details">
<p><strong>Phone:</strong> (123) 456-7890</p>
<p><strong>Address:</strong> 123 Semaphore Court St., Legal City, 12345</p>
</div>
<div class="footer-links">
<a href="about.html">About</a>
<span>|</span>
<a href="terms-and-conditions.html">Terms & Conditions</a>
</div>
</div>
</footer>
</body>
</html>