forked from JoeRedDuck/JoeRedDuck.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfiles.html
More file actions
27 lines (27 loc) · 995 Bytes
/
files.html
File metadata and controls
27 lines (27 loc) · 995 Bytes
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
<!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';">Architecture</button>
<button onclick="location.href='Req1.pdf';">Requirements</button>
<button onclick="location.href='Plan1.pdf';">Method selection and planning</button>
<button onclick="location.href='Risk1.pdf';">Risk assessment and mitigation</button>
<button onclick="location.href='Impl1.pdf';">Implementation</button>
</div>
</section>
</body>
</html>