-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (83 loc) · 1.8 KB
/
index.html
File metadata and controls
88 lines (83 loc) · 1.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DominionSim</title>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f5f5f5;
color: #333;
}
header {
background-color: #2c3e50;
color: #fff;
padding: 2rem 1rem;
text-align: center;
}
main {
max-width: 800px;
margin: 2rem auto;
background: #fff;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
h1, h2 {
color: #2c3e50;
}
pre {
background: #eee;
padding: 1rem;
border-radius: 4px;
overflow-x: auto;
}
footer {
text-align: center;
padding: 1rem;
color: #666;
font-size: 0.9rem;
}
</style>
</head>
<body>
<header>
<h1>DominionSim</h1>
<p>A simulator for the Dominion card game</p>
</header>
<main>
<section>
<h2>About</h2>
<p>
DominionSim is a simulator for the Dominion card game. It allows you to
build and run simulations using Java and Maven.
</p>
</section>
<section>
<h2>Prerequisites</h2>
<p>You will need the following to build and run the simulator:</p>
<ul>
<li>Java SE SDK 1.8 or higher</li>
<li>Maven</li>
</ul>
</section>
<section>
<h2>Build</h2>
<p>To build the simulator JAR file, run:</p>
<pre><code>mvn package</code></pre>
</section>
<section>
<h2>Run</h2>
<p>To run the simulator, use:</p>
<pre><code>mvn exec:java</code></pre>
</section>
</main>
<footer>
<p>© DominionSim</p>
</footer>
</body>
</html>