-
Notifications
You must be signed in to change notification settings - Fork 0
/
level3.html
69 lines (48 loc) · 2.02 KB
/
level3.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flexbox Explora</title>
<link rel="stylesheet" href="bootstrap.min.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Oxanium&family=Ubuntu:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="stustyle.css">
<link rel="stylesheet" href="game.css">
</head>
<body>
<h3 class="navbar-brand col-sm-3 col-md-2 mr-0">FLEXBOX EXPLORA</h3>
<a class="btn btn-danger" style="float: right;" href="index.html">Back</a>
</head>
<body>
<div class="app">
<section id="instructions">
<p>Lead the fish to the center of the pond using a combination of <span class="help">justify-content</span> and <span class="help">align-items.</span>
<div class="editor">
<div class="line-numbers">1<br>2<br>3<br>4<br>5<br>6<br>7<br>8<br>9<br>10</div>
<pre>#pond {
display: flex;</pre>
<textarea></textarea>
<pre>}</pre>
<button name="next" id="next" class="next">Run</button><br/><br/>
</div>
</section>
<section id="pond">
<div id="forefront">
<div class="fish-container">
<div class="fish green animated pulse infinite"></div>
</div>
</div>
<div id="board" style="align-items: center; justify-content: center;">
<div class="food-container">
<div class="food green" style="transform: scale(0.88) rotate(322deg)"></div>
</div>
</div>
</section>
</div>
<script src="app.js"></script>
</body>
</html>