-
Notifications
You must be signed in to change notification settings - Fork 0
/
exercise-1.html
44 lines (42 loc) · 1.15 KB
/
exercise-1.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Exercise 1</title>
<style>
/* Your styles here!
Colors: 'Green', #FEFE22, 'Red', #0000CD
*/
</style>
</head>
<body>
<h1>USS Enterprise - System Diagnostic</h1>
<div id="wrapper">
<div class="category">
<h2>Tactical</h2>
<ul>
<li>Shields</li>
<li class="damaged">Phasers</li>
<li class="inoperable">Photon Torpedoes</li>
</uL>
</div>
<div class="category">
<h2>Engineering</h2>
<ul>
<li class="damaged">Warp Drive</li>
<li>Life Support</li>
<li class="damaged">Turbolifts</li>
</uL>
</div>
<div class="category">
<h2>Operations</h2>
<ul>
<li class="inoperable">Holodeck</li>
<li class="inoperable">Transporters</li>
<li>Hydroponics</li>
</uL>
</div>
</div>
</body>
</html>