-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (50 loc) · 2.16 KB
/
index.html
File metadata and controls
67 lines (50 loc) · 2.16 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
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Magic Background - Interactive visual effects">
<title>Magic Background</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="./src/css/reset.css">
<link rel="stylesheet" href="./src/css/style.css">
<link rel="stylesheet" href="./src/css/responsive.css">
</head>
<body>
<header class="header">
<h1>Magic Background</h1>
<p class="subtitle">Transform your AI Powered ideas into amazing backgrounds. <br> Describe what you imagine and
watch the magic happen!</p>
</header>
<main class="container">
<section class="card main-card">
<h2 class="card-header">Describe your background idea</h2>
<form class="form-group">
<textarea rows="5" id="description"
placeholder="Eg.: Black carbon fiber with crimson glowing details"></textarea>
<button id="gen-btn" class="btn-magic">
<span id="btn-text">Generate your Magic Background!</span>
</button>
</form>
</section>
<section id="preview-section" class="preview-card"></section>
<section id="code-output" class="code-grid">
<div class="card code-card">
<h3 class="code-title">HTML code snippet:</h3>
<pre id="html-code" class="code-block"></pre>
</div>
<div class="card code-card">
<h3 class="code-title">CSS code snippet:</h3>
<pre id="css-code" class="code-block"></pre>
</div>
</section>
</main>
<footer>
<p>© 2026 Magic Background | Gabriel Camacho powered by AI</p>
</footer>
<script src="./src/js/index.js"></script>
</body>
</html>