-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogbook.html
More file actions
147 lines (141 loc) · 4.57 KB
/
logbook.html
File metadata and controls
147 lines (141 loc) · 4.57 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!doctype html>
<html>
<head>
<title>64-31 - Projet - Journalé de bord</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="ressources/css/style.css">
<link rel="stylesheet" href="ressources/css/mobileStyle.css">
</head>
<body>
<header>
<h1>HES-SO Vs - 64-31 - Web Development</h1>
<nav>
<!-- Hamburger -->
<ul id="test">
<li class="hamburger">
<img src="ressources/images/hamburger_icon.svg">
</li>
<li>
<a href="description.html">Description</a>
</li>
<li>
<a href="sketch.html">Sketch</a>
</li>
<li>
<a href="mockup.html">Mockup</a>
</li>
<li>
<a href="flow.html">Flow</a>
</li>
<li class="active">
<a href="logbook.html">Logbook</a>
</li>
<li>
<a href="game.html">Game</a>
</li>
<li>
<a href="forms.html">Forms</a>
</li>
</ul>
</nav>
</header>
<main>
<!-- Début zone pour votre contenu -->
<section id="articles">
<article>
<header>
<h2>Logbook of our project</h2>
<p>By Matthias Gaillard the 15/10/2024 at 09:00</p>
</header>
<table>
<tr>
<th>Date</th>
<th>Duration</th>
<th>Task</th>
<th>Author</th>
</tr>
<tr>
<td>05.10.2024</td>
<td>4h</td>
<td>Create static website</td>
<td>Matthias</td>
</tr>
<tr>
<td>05.10.2024</td>
<td>1h</td>
<td>Continue filling up the Word-Document about the project</td>
<td>Elia</td>
</tr>
<tr>
<td>05.10.2024</td>
<td>2h</td>
<td>Make mock up 1</td>
<td>Alexis</td>
</tr>
<tr>
<td>06.10.2024</td>
<td>45 mins</td>
<td>Bug correction html</td>
<td>Alexis</td>
</tr>
<tr>
<td>07.10.2024</td>
<td>4h</td>
<td>Redo static website with html given by the teacher, and mobile responsiveness</td>
<td>Matthias</td>
</tr>
<tr>
<td>11.10.2024</td>
<td>2h</td>
<td>Make mock up 2</td>
<td>Alexis</td>
</tr>
<tr>
<td>16.10.2024</td>
<td>30 mins</td>
<td>Bug Correction HTML</td>
<td>Alexis</td>
</tr>
<tr>
<td>18.10.2024</td>
<td>30 mins</td>
<td>Build the table in logbook page</td>
<td>Matthias</td>
</tr>
<tr>
<td>05.11.2024</td>
<td>4h</td>
<td>Create game canvas with character moving and character animations</td>
<td>Matthias</td>
</tr>
<tr>
<td>05.11.2024</td>
<td>4h</td>
<td>Encapsulating code in Level1 and Pirate classes, adding borders and borders hitboxes to the level</td>
<td>Matthias</td>
</tr>
</table>
</article>
</section>
<!-- >Fin zone pour votre contenu -->
<aside>
<div>
<h3>Summary of project data</h3>
<ul>
<li>
<p><strong>Total time of project </strong>: XX hours</p>
</li>
<li>
<p><strong>Other data </strong>: ...</p>
</li>
</ul>
</div>
</aside>
</main>
<footer>
<img id="logo" src="ressources/images/logo.png">
</footer>
<script src="ressources/js/script.js"></script>
</body>
</html>