-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocument.html
More file actions
88 lines (85 loc) · 3.55 KB
/
document.html
File metadata and controls
88 lines (85 loc) · 3.55 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>
<head>
<!-- Manages the styles etc for the design e.g. don't touch unless you know what you're doing!-->
<title>devCharles</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,
initial-scale=1">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class="navbar">
<div class="container">
<div class="navbar-brand">
<!-- Logo placeholder-->
<a class="navbar-item" href="index.html">
<img class="logo" src="images/logo-light.png" alt="logo">
</a>
<span class="navbar-burger" data-target="navbarMenuHeroA">
<span></span>
<span></span>
<span></span>
</span>
</div>
<div id="navbarMenuHeroA" class="navbar-menu">
<div class="navbar-end">
<a href="index.html" class="navbar-item">
Home
</a>
<div class="navbar-item has-dropdown is-hoverable">
<a href="document.html" class="navbar-link">
Documentation
</a>
<div class="navbar-dropdown">
<a href="document.html" class="navbar-item">
Extra diagrams
</a>
<a href="docs/Requirements_Doc_NEW.pdf" class="navbar-item">
Requirements
</a>
<a href="docs/Architecture.pdf" class="navbar-item">
Architecture
</a>
<a href="docs/Method_selection_and_planning.pdf" class="navbar-item">
Method Selection and Planning
</a>
<a href="docs/Risk_assessment_and_mitigation.pdf" class="navbar-item">
Risk Assesment and Mitigation
</a>
<a href="docs/Implementation.pdf" class="navbar-item">
Implementation
</a>
<a href="javadoc/index.html" class="navbar-item">
Javadoc
</a>
</div>
</div>
<span class="navbar-item">
<!-- Set as primary so we can customise the colour scheme later with sass -->
<a href="piazzaPanic.jar" class="button is-link">
<span>Download</span>
</a>
</span>
</div>
</div>
</div>
</nav>
<section class="section">
<div class="container">
<div class="content">
<h1>Iteration 1</h1>
<h3>Initial uml</h3>
<img src="images/iteration1.png">
<h3>Class-Responsibility-Collaboration Cards</h3>
<img src="images/crc.png">
<h1>Iteration 2</h1>
<h3>Second uml - inheritance</h3>
<img src="images/iteration2.png">
<h1>Iteration 3</h1>
<h3>Final uml diagram</h3>
<img src="images/iteration3.png">
</div>
</div>
</section>
</body>