-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdom.practice2.html
More file actions
64 lines (59 loc) · 1.85 KB
/
dom.practice2.html
File metadata and controls
64 lines (59 loc) · 1.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>DOM Events</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<style>
body {
background-image: url("img/earth-to-moon.jpeg");
background-size: cover;
color: white;
}
#goku {
height: 250px;
margin-top: 200px;
width: auto;
}
.space-bar {
display: none;
height: 200px;
width: auto;
margin-left: 200px;
position: absolute;
right: 0;
bottom: 150px;
}
</style>
</head>
<body id="main-content">
<h1 class="p-5" id="moon-travel">Fly me to the Moon!</h1>
<section class="ml-5">
<div>
<label for="text-color">Change the text color?</label>
<input type="text" id="text-color" name="text-color">
<button id="color-btn">Change Font Color</button>
</div>
<br>
<label for="travel-items">
What's your top item for space travel?
</label>
<select id="travel-items">
<option>Select an Item:</option>
<option value="Rocket">Rocket</option>
<option value="Fuel">Fuel</option>
<option value="Space Suit">Space Suit</option>
<option value="Food & Water">Food & Water</option>
</select>
</section>
<div class="ml-5" id="little-list">
<h2 class="result"></h2>
<img src="img/goku-normal.png" id="goku">
<button class="goku-chill">Goku Chill!</button>
</div>
<img src="img/space-bar.png" alt="simple bar" class="space-bar">
<!--<script src="js/dom-events-lec.js"></script>-->
<script src="js/dom-practice2.js"></script>
</body>
</html>