-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Azanian Eagle's Macho Decider</title>
<link rel="icon" href="Favicon.png" type="image/png">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>MACHO DECIDER</h1>
<p>ENTER UP TO TEN OPTIONS AND LET FATE MAKE A RISQUÉ DECISION!</p>
<p>GOOD LUCK TO YOU!</p>
<!-- Original input fields -->
<input type="text" id="option1" placeholder="OPTION 1" class="input macho-input">
<input type="text" id="option2" placeholder="OPTION 2" class="input macho-input">
<br/>
<!-- Container for additional options -->
<div id="additional-options-container"></div>
<!-- Add More button -->
<button id="add-more-button" class="macho-button">Add More</button>
<!-- Randomly generated decision output -->
<div id="result" class="macho-result"></div>
<!-- Decide button -->
<button id="decide-button" class="macho-button">DECIDE!</button>
</div>
<!-- Footer -->
<footer class="footer-style">
<p>Brought to you by the great minds at <a href="https://eagle-i.mngqibisafoundation.org/">Azanian Eagle</a>. All Rights Reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>