forked from tinkerhub/useless_project_temp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmen.html
More file actions
106 lines (97 loc) · 2.74 KB
/
men.html
File metadata and controls
106 lines (97 loc) · 2.74 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Zombie Profiles - Women</title>
<link rel="stylesheet" href="style.css">
<style>
.profile-card {
background: #fff;
border-radius: 20px;
padding: 20px;
margin: 20px auto;
width: 300px;
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
position: relative;
}
.profile-card img {
width: 40%;
border-radius: 15px;
}
.profile-name {
font-size: 1.5rem;
font-weight: bold;
margin: 10px 0;
}
.dropdown-content {
display: none;
font-size: 0.95rem;
margin-top: 10px;
}
.toggle-btn {
background-color: #66040f;
color: #fff;
padding: 10px 10px;
border: none;
border-radius: 10px;
cursor: pointer;
margin-top: 10px;
}
.interested-btn {
margin-top: 10px;
background: #a20a74;
color: white;
padding: 2px 5px;
border: none;
border-radius: 20px;
cursor: pointer;
text-decoration: none;
}
nav .logo {
color: #a20a74;
}
</style>
</head>
<body>
<div class="background"></div>
<div class="overlay"></div>
<nav>
<div class="logo">Love After Life</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a class="active" href="#">Find Couple</a></li>
<li><a href="#">Chat</a></li>
</ul>
</nav>
<main>
<div class="center-content">
<div class="profile-card">
<img src="zombie-boy1.png" alt="Zombie boy 1">
<div class="profile-name">Shambler tington</div>
<button class="toggle-btn" onclick="toggleDetails(this)">More Details</button>
<div class="dropdown-content">
<p>Likes: a relentless hunter, always on the lookout for his next meal. He's fast and agile, making him a formidable opponent.</p>
<p>Personality: Hopeless Romantic</p>
</div>
<a class="interested-btn" href="chat.html">Interested</a>
</div>
<div class="profile-card">
<img src="zombie-boy2.png" alt="Zombie Boy 2">
<div class="profile-name">Rotticus Digger</div>
<button class="toggle-btn" onclick="toggleDetails(this)">More Details</button>
<div class="dropdown-content">
<p>Likes: a slow but determined zombie. He's been decaying for a long time and is covered in maggots.</p>
<p>Personality: Disgustingly cute</p>
</div>
<a class="interested-btn" href="chat.html">Interested</a>
</div>
</div>
</main>
<script>
function toggleDetails(button) {
const content = button.nextElementSibling;
content.style.display = content.style.display === "block" ? "none" : "block";
}
</script>
</body>
</html>