-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (49 loc) · 2.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Beshify</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🤸♀️</text></svg>">
<link rel="stylesheet" type="text/css" href="./css/style.css">
</head>
<body>
<div class="content">
<div class="container">
<div class="dark-mode">
<div class="custom-control custom-switch">
<input type="checkbox" class="custom-control-input" id="darkModeSwitch">
<label class="custom-control-label" for="darkModeSwitch"></label>
</div>
</div>
<h1 class="text-center font-weight-bold">🤸 Beshify 🤸</h1>
<div class="description">
<p class="text-center">Beshify is a fun project inspired by a <a href="https://www.youtube.com/watch?v=F0cqLhz2lzE">viral meme</a> on social media. It generates text with the 🤸 emoji placed between words, adding a playful touch to your messages. This project was created purely for entertainment purposes and aims to bring a smile to your face. Have fun Beshifying your text!</p>
<br>
</div>
<div class="text-box">
<textarea class="form-control" id="textInput" rows="3" placeholder="Enter your text here"></textarea>
</div>
<div class="generated-text-box">
<textarea class="form-control generated-text" id="generatedText" rows="3" placeholder="Generated text" readonly></textarea>
<span class="copy-alert" id="copyAlert">Copied to clipboard!</span>
</div>
<button class="btn btn-primary copy-button" id="copyButton" type="button">Copy to Clipboard</button>
<button class="btn btn-secondary reset-button" type="button">Reset</button>
<span class="empty-alert" id="emptyAlert">Input field should not be empty!</span>
</div>
</div>
<footer class="footer">
<div class="container text-center">
<p>Made with ❤️ by <a href="https://github.com/paulaxisabel">Paula Isabel Signo</a>.</p>
</div>
</footer>
<script src="https://kit.fontawesome.com/7573cb7850.js" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script src="./js/main.js">
</script>
</body>
</html>