-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (53 loc) · 2.08 KB
/
index.html
File metadata and controls
62 lines (53 loc) · 2.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Pattern Maker</title>
<link rel="icon" type="image/png" href="favicon.png" />
<link rel="stylesheet" href="style.css" />
</head>
<body class="light-mode">
<h1 id="title">Text Pattern Generator</h1>
<!-- Theme Selector -->
<label for="themeSelect">Theme:</label>
<select id="themeSelect">
<option value="light">Light</option>
<option value="dark">Dark</option>
<option value="candy">Candy</option>
<option value="emoji">Emoji Full</option>
</select>
<!-- Mode Switch Buttons -->
<div>
<button id="patternBtn" onclick="switchMode('pattern')">Pattern Mode</button>
<button id="multiplierBtn" onclick="switchMode('multiplier')">Text Multiplier</button>
</div>
<!-- Pattern Mode -->
<div id="patternMode">
<label>Pattern Text:</label>
<input type="text" id="patternText" placeholder="Enter text here" />
<label id="patternLabel">Pattern Length</label>
<input type="number" id="patternCount" value="10" min="1" />
<button id="generatePatternBtn" onclick="generatePattern()">Generate Pattern</button>
</div>
<!-- Multiplier Mode -->
<div id="multiplierMode" class="hidden">
<label>Text:</label>
<input type="text" id="multiText" placeholder="Enter text here" />
<label>Repeat Count:</label>
<input type="number" id="multiCount" value="5" min="1" />
<label id="numberedLabel">
<input type="checkbox" id="enableNumbering" /> Numbered List
</label>
<button id="generateMultiplierBtn" onclick="generateMultiplier()">Multiply It!</button>
</div>
<!-- Output -->
<pre id="outputBox"></pre>
<button id="copyBtn" onclick="copyOutput()">Copy to Clipboard</button>
<footer>
Made with <span style="color:red;">❤️</span> by <strong>Seigh_sword</strong>
<a href="https://www.youtube.com/@Sieghsword" target="_blank">Subscribe</a>
</footer>
<script src="script.js"></script>
</body>
</html>