-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
70 lines (66 loc) · 2.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link rel="stylesheet" href="./css/styles.css" />
<script src="./js/script.js"></script>
<script src="./js/jquery-3.7.1.min.js"></script>
<title>BrickSum</title>
</head>
<body>
<header id="header">
<div id="icon">
<img src="https://cdn.brickmmo.com/icons@1.0.0/bricksum.png" alt="Bricksum-icon" />
</div>
<h1>BrickSum</h1>
</header>
<main id="main">
<p>
BrickSum is a unique tool designed for BrickMMO enthusiasts, content
creators, and developers. This tool allows you to create different texts
from the chosen option with the given size in the
<strong>Number</strong> input.
</p>
<h3>Features</h3>
<ol>
<li>Generate custom Lorem Ipsum text using BrickMMO thememed words</li>
<li>Specify the number of words, sentences, or paragraphs</li>
<li>Easily copy the generated text to your clipboard</li>
</ol>
<form name="myform">
<span>
<input type="number" id="num" name="form_num" min="1" value="5" />
</span>
<select name="form_option" id="dropdown">
<option value="words">Words</option>
<option value="sentences">Sentences</option>
<option value="paragraphs" selected>Paragraphs</option>
</select>
<div class="btn">
<button type="submit" id="generate-btn">
Generate Text <i class="fa fa-plus"></i>
</button>
<button type="button" id="copy-btn">
Copy <i class="fa fa-regular fa-copy"></i>
</button>
</div>
</form>
<div id="output"></div>
</main>
<footer id="footer" class="w3-border-top w3-margin-top w3-center">
<div class="copyright">
<p>© <a href="https://brickmmo.com">BrickMMO</a> | 2024 | All rights reserved</p>
<p>
LEGO, the LEGO logo and the Minifigure are trademarks of the LEGO
Group.
</p>
</div>
</footer>
<script src="https://account.brickmmo.com/header"></script>
</body>
</html>