-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgemma.html
111 lines (96 loc) · 2.24 KB
/
gemma.html
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
107
108
109
110
111
<!DOCTYPE html>
<html>
<head>
<title>OnlySquatch - Find Your Inner Sasquatch</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f4f4f4;
color: #333;
margin: 0;
padding: 0;
}
header {
background-color: #222;
color: #fff;
text-align: center;
padding: 1em 0;
}
h1 {
margin: 0;
font-size: 2.5em;
}
.container {
max-width: 960px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
img {
max-width: 100%;
height: auto;
display: block;
margin: 20px auto;
}
.call-to-action {
text-align: center;
margin-top: 30px;
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #222;
color: #fff;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.button:hover {
background-color: #444;
}
/* Bigfoot-themed styling */
.container::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to right, rgba(0,0,0,0.1), rgba(0,0,0,0));
z-index: -1;
}
.container::after {
content: '';
position: absolute;
bottom: 0;
right: 0;
width: 50px;
height: 50px;
background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCI+PGNpcmNsZSBjeD0iMjUiIGN5PSIyNSIgcj0iMjAiIGZpbGw9InJnYmEoMCwwLDAsMC4xKSIvPjwvc3ZnPg==');
background-size: contain;
background-repeat: no-repeat;
}
</style>
</head>
<body>
<header>
<h1>OnlySquatch</h1>
<h2>Find Your Inner Sasquatch</h2>
</header>
<div class="container">
<p>Feeling lost in the wilderness of life? Need a fresh perspective on your business or personal goals? Let Coach Squatch guide you!</p>
<img src="https://github.com/johnowhitaker/onlysquatch/blob/main/squatch1.jpg?raw=true" alt="Coach Squatch on Zoom">
<p>Coach Squatch offers personalized, one-on-one coaching sessions to help you:</p>
<ul>
<li>Unleash your inner potential</li>
<li>Overcome obstacles and achieve your goals</li>
<li>Find clarity and direction in your life</li>
<li>Develop a growth mindset</li>
</ul>
<div class="call-to-action">
<a href="#" class="button">Subscribe on OnlyFans</a>
</div>
</div>
</body>
</html>