-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (61 loc) · 2.05 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Congratulations!</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f8f9fa;
color: #343a40;
text-align: center;
padding: 50px;
}
.container {
max-width: 600px;
margin: auto;
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1 {
color: #28a745;
}
img {
max-width: 100%;
height: auto;
border-radius: 10px;
width: 300px;
}
.domain-list {
list-style-type: disc;
margin-top: 20px;
text-align: left; /* Align list to the left */
padding-left: 20px; /* Add some padding for list bullets */
}
.domain-list li {
margin-bottom: 10px;
}
</style>
</head>
<body>
<div class="container">
<h1>Congratulations Scott and Bolivia!</h1>
<p>Dear Scott,</p>
<p>Wishing you a lifetime of love and happiness. Congratulations on your special day!</p>
<img src="scott_1.jpeg" alt="Wedding Image">
<p>Best wishes,</p>
<p>Gage</p>
<div class="message">
<p>By the way, I tried to get <strong><a href="https://www.touchsomegrass.com" target="_blank">touchsomegrass.com</a></strong> for you, but it was just too expensive. Hope you still like these other domains instead!</p>
</div>
<ul class="domain-list">
<li><a href="http://www.touchsomegrass.online" target="_blank">touchsomegrass.online</a></li>
<li><a href="http://www.touchsomegrass.store" target="_blank">touchsomegrass.store</a></li>
<li><a href="http://www.touchsomegrass.biz" target="_blank">touchsomegrass.biz</a></li>
</ul>
</div>
</body>
</html>