-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (81 loc) · 2.82 KB
/
Copy pathindex.html
File metadata and controls
91 lines (81 loc) · 2.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Links</title>
<style>
/* General Page Styling */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f3f4f6; /* Light gray background */
color: #1f2937;
display: flex;
flex-direction: column;
align-items: center;
padding: 50px 20px;
margin: 0;
}
/* Profile Image Styling */
.profile-img {
width: 120px;
height: 120px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 20px;
border: 4px solid #ffffff;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
/* Text Styling */
h1 {
margin: 0 0 5px 0;
font-size: 1.8rem;
}
p {
margin: 0 0 30px 0;
color: #4b5563;
text-align: center;
font-size: 1rem;
}
/* Links Container */
.links-container {
display: flex;
flex-direction: column;
width: 100%;
max-width: 400px; /* Keeps buttons from getting too wide on desktop */
gap: 15px;
}
/* Individual Button Styling */
.link-btn {
background-color: #ffffff;
color: #1f2937;
text-decoration: none;
padding: 16px 20px;
border-radius: 12px;
text-align: center;
font-weight: 600;
border: 1px solid #e5e7eb;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
transition: all 0.2s ease-in-out;
}
/* Button Hover Effect */
.link-btn:hover {
background-color: #1f2937; /* Dark background on hover */
color: #ffffff; /* White text on hover */
transform: translateY(-3px); /* Slight jump effect */
box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
</style>
</head>
<body>
<img src="131A05B5-7A14-4CA6-8AD0-4F9AC65C6C96.jpg" alt="My Profile Picture" class="profile-img">
<h1>JosieRosie666 </h1>
<p>Just a mom selling stuff 💕</p>
<div class="links-container">
<a href="https://cash.app/$JosieRosie666" class="link-btn" target="_blank">Ca$hApp</a>
<a href="https://www.ebay.com/usr/josierosie666" class="link-btn" target="_blank">eBay</a>
<a href="https://docs.google.com/spreadsheets/d/1Mb1o4UYKZ4x5Gix9Hys6RP0C0X1n7yoFCprXae_2Khk/edit?usp=sharing
" class="link-btn" target="_blank">List of Cards for Sale/Looking for</a>
</div>
</body>
</html>