-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
30 lines (27 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EZ Text Generator</title>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Orbitron&family=Audiowide&family=VT323&family=Permanent+Marker&family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>
<header>
<h1>EZ Text Generator</h1>
<p>Create cool text styles for your usernames and social media profiles!</p>
</header>
<main>
<section class="input-section">
<input type="text" id="inputText" placeholder="Enter your text here" />
<button onclick="generateStyles()">Generate Styles</button>
</section>
<section id="styledNames" class="styled-names-section">
<!-- Generated styled text will appear here -->
</section>
</main>
<script src="script.js"></script>
</body>
</html>