-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
110 lines (94 loc) · 4.2 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Photo Flip</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="background">
<center>
<header>
<h1>Antonio Archer's Pirate Seafinder for Pics of the 7 Seas</h1>
<p>Explore easter eggs! Click the symphony button to enjoy a new song for every image.</p>
</header>
<section>
<button id="feedbackButton">Give Feedback</button>
<div id="feedbackFormSection" class="feedback-form-section" style="display: none;">
<h2>Feedback Form</h2>
<form id="feedbackForm">
<label for="feedback">Your Feedback:</label>
<textarea id="feedback" rows="4" required></textarea>
<label for="feedbackName">Your Name:</label>
<input type="text" id="feedbackName">
<label for="feedbackEmail">Your Email:</label>
<input type="email" id="feedbackEmail">
<button type="submit">Submit Feedback</button>
</form>
<p id="feedbackResponse"></p>
</div>
</section>
<hr>
<main class="grid-container">
<figure class="image-section">
<a id="imageLink" href="#">
<img src="https://cdn.pixabay.com/photo/2013/11/01/11/13/dolphin-203875_1280.jpg"
alt="Dolphin" class="images" id="mainImage">
</a>
<figcaption id="caption" class="caption"></figcaption>
</figure>
<div class="button-container">
<button id="externalLink">Symphony</button>
<button id="nextButton">Next</button>
<button id="prevButton">Previous</button>
</div>
<div class="other-buttons">
<button id="likeButton">Like</button>
<button id="hideButton">Hide Image</button>
<button id="dislikeButton">Dislike</button>
</div>
<section id="menuSection">
<label for="hiddenImagesDropdown">Select Hidden Image:</label>
<select id="hiddenImagesDropdown">
<option value="">-- Select an Image --</option>
</select>
<button id="unhideButton" class="unhideButton">Unhide Selected</button>
</section>
</main>
</center>
</div>
<div id="comment-section" class="comment-section">
<h2>Comment Section</h2>
<textarea id="comment-text-area" placeholder="Leave any comments here"></textarea>
<button id="comment-button">Enter</button>
</div>
<center>
<div id="userFormSection" class="user-form-section">
<h2>User Preferences</h2>
<form id="userForm">
<label for="name">Name:</label>
<input type="text" id="name" required>
<label for="email">Email:</label>
<input type="email" id="email" required>
<label for="themeDropdown">Select Theme:</label>
<select id="themeDropdown" required>
<option value="">-- Select a Theme --</option>
<option value="light">Light Theme</option>
<option value="dark">Dark Theme</option>
<option value="colorful">Colorful Theme</option>
<!-- Add more options as needed -->
</select>
<button type="submit">Submit</button>
</form>
<p id="formResponse"></p>
</div>
</center>
<footer>
<p>If you like this image, make sure to share it!</p>
<button id="shareButton">Share</button>
</footer>
<script defer src="script.js"></script>
<script defer src="dropdown.js"></script>
</body>
</html>