-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrandomselection.html
55 lines (51 loc) · 1.74 KB
/
randomselection.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
<!DOCTYPE html>
<html>
<head>
<title>Katzcraft Studios</title>
<link rel="stylesheet" href="style.css"/>
<link rel="icon" type="image/png" href="Katzcraft_Studios_Logo.png">
</head>
<body>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="socialmedia.html">Social Media</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a class="activenb" href="tools.html">Tools</a></li>
<li><a href="downloads.html">Downloads</a></li>
</ul>
</nav>
<br><br><br><br><br><br>
<div class="center2">
<h5><u>Random selector</u></h5><br>
<h6>Enter the values (separated by commas):</h6><br>
</div>
<style>
button {
padding: 10px 20px;
font-size: 16px;
background-color: #373de6;
color: white;
border: none;
cursor: pointer;
}
#result {
margin-top: 20px;
font-size: 24px;
font-family: arial;
}
</style>
<div class="centered">
<input type="text" id="values" placeholder="Value1, Value2, Value3, ..." size="50"><br>
<button onclick="pickRandomValue()">Confirm</button>
<div id="result"></div>
<script src="randomselectionscript.js"></script>
</div>
<br><br>
<div class="center2">
<h5><u>Errors or suggestions</u></h5><br>
<h6>If you find a bug or have suggestions for improvement, feel free to write them on our Discord:</h6><br><br>
</div>
<div class="centered">
<iframe src="https://discord.com/widget?id=906164029523890217&theme=dark" width="600" height="400" allowtransparency="true" frameborder="0" sandbox="allow-popups allow- popups-to-escape-sandbox allow-same-origin allow-scripts"></iframe>
</div>