-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (70 loc) · 1.64 KB
/
index.html
File metadata and controls
70 lines (70 loc) · 1.64 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
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Random HTML Section</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
body {
margin: 0;
font-family: Inter, Arial, sans-serif;
background: #0b0b1c;
color: #e3e4eb;
}
.card {
max-width: 720px;
margin: 60px auto;
padding: 28px;
background: linear-gradient(135deg, #14142e, #1c1c3a);
border-radius: 16px;
box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}
h1 {
margin-top: 0;
font-size: 28px;
color: #9d6bff;
}
p {
line-height: 1.7;
color: #c8c9d2;
}
.badge {
display: inline-block;
padding: 6px 12px;
border-radius: 999px;
background: rgba(157,107,255,0.15);
color: #9d6bff;
font-size: 13px;
margin-bottom: 12px;
}
.cta {
display: inline-block;
margin-top: 18px;
padding: 12px 18px;
background: #9d6bff;
color: #0b0b1c;
border-radius: 10px;
text-decoration: none;
font-weight: 600;
}
.cta:hover {
opacity: 0.9;
}
</style>
</head>
<body>
<div class="card">
<span class="badge">Demo Section</span>
<h1>Hello, Random HTML 👋</h1>
<p>
This is a simple, clean HTML block with inline CSS. You can use it as a
placeholder, email preview, landing section, or just to test layouts.
</p>
<p>
Edit the text, colors, or spacing to match your brand. Everything here is
intentionally lightweight and framework-free.
</p>
<a href="#" class="cta">Take Action</a>
</div>
</body>
</html>