-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (56 loc) · 1.69 KB
/
index.html
File metadata and controls
66 lines (56 loc) · 1.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Profile Card Generator</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1>Profile Card Generator</h1>
<p>Create and customize your profile card with live preview</p>
<div class="container">
<section class="preview">
<h2>👀 Live Preview</h2>
<div id="profile-card">
<!-- Aquí se genera dinámicamente la tarjeta -->
</div>
</section>
<section class="form">
<h2>🛠️ Customize Profile</h2>
<label>
Include Cover:
<select id="includeCover">
<option value="true">Yes</option>
<option value="false">No</option>
</select>
</label>
<label>
Background Image URL:
<input type="text" id="background" placeholder="https://example.com/image.jpg" />
</label>
<label>
Avatar URL:
<input type="text" id="avatar" placeholder="https://example.com/avatar.jpg" />
</label>
<label>
First Name:
<input type="text" id="name" placeholder="John" />
</label>
<label>
Last Name:
<input type="text" id="lastname" placeholder="Doe" />
</label>
<label>
Role:
<input type="text" id="role" placeholder="Frontend Wizard" />
</label>
<label>
Location:
<input type="text" id="location" placeholder="CDMX, México" />
</label>
</section>
</div>
<script src="app.js"></script>
</body>
</html>