-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfiles.html
More file actions
41 lines (38 loc) · 1.83 KB
/
files.html
File metadata and controls
41 lines (38 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<nav>
<div class="logo">Team 10</div>
<div class="nav-items">
<a href="/index.html">Home</a> <a href="/files.html">Files</a>
</div>
</nav>
<section class="hero">
<div class="hero-container">
<div class="divider" />
<button onclick="location.href='Arch1.pdf';"
style="margin-top: 100px; margin-bottom: 50px;">Architecture</button>
<button onclick="location.href='Req1.pdf';" style="margin-bottom: 50px;">Requirements</button>
<button onclick="location.href='Plan1.pdf';" style="margin-bottom: 50px;">Method selection and
planning</button>
<button onclick="location.href='Risk1.pdf';" style="margin-bottom: 50px;">Risk assessment and
mitigation</button>
<button onclick="location.href='Impl1.pdf';" style="margin-bottom: 50px;">Implementation</button>
<button onclick="location.href='https://docs.google.com/document/d/1ikhoD1UbGr6qqkpUkFSv4U7OlrxT2-My/edit';"
style="margin-bottom: 50px;">Weekly snapshots</button>
<button onclick="location.href='https://github.com/brueing/ENG-1';" style="margin-bottom: 50px;">Build
repository</button>
<button onclick="location.href='/game.jar';" style="margin-bottom: 50px;">Executable JAR</button>
<button
onclick="location.href='https://drive.google.com/drive/folders/1Xgdou1XS0_cojy-l9T0cuOLaboK1UW6T?usp=sharing';"
style="margin-bottom: 50px;">CRC Cards</button>
</div>
</section>
</body>
</html>