Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
Binary file added assets/.DS_Store
Binary file not shown.
Binary file added assets/goFundMe.JPEG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
54 changes: 44 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="style.css" />

</head>
<body>

</body>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Help [Your Cause] Fundraising</title>
<link rel="stylesheet" href="style.css">
</head>
<body>

<header>
<h1>Help Fund Kyle's Amsterdam Weekend:</h1>
<p>Your support can make a difference!</p>
</header>

<section>
<h2>Our Story</h2>
<p>
Hello readers,
<br/>
so I'd like to start by saying. My name is Kyle,
I am 27 years old and this is a goFundMe for my upcoming Amsterdam trip.
<br/>
Unfortunately, of very recent I have come down with a serious disease.
The disease I have inherited is Poverty,
I am poor and I can't actually afford my holiday.
<br/>
<br/>
Below, here is a current photo of me and my current state:
</p>
<img class="kyleImage" src="/assets/goFundMe.JPEG"/>
</section>
<section>
<h2>How You Can Help</h2>
<p>Any contribution, big or small, can make a significant impact.
<br/>
Just make sure it's a big contribution, Your support means the world to us!</p>

<a href="#" class="donate-btn">Donate Now</a>
</section>

<footer>
&copy; 2024 Kyle Vann Enterprise. All rights reserved.
</footer>

</body>
</html>
64 changes: 64 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f8f8f8;
color: #333;
}

header {
background-color: #3C4F80;
color: #fff;
padding: 20px;
text-align: center;
}

section {
max-width: 800px;
margin: 20px auto;
background-color: #fff;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
text-align: center;
}

h2 {
color: #2c3e50;
text-decoration: underline;
text-decoration-color: black;
}

p {
line-height: 1.6;
}

.donate-btn {
display: inline-block;
padding: 10px 20px;
background-color: #3498db;
color: #fff;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}

.kyleImage{
width: 500px;
margin: auto;
display: block;
}

.donate-btn:hover {
background-color: #2980b9;
}

footer {
background-color: #3C4F80;
color: #fff;
text-align: center;
padding: 10px;
position: fixed;
bottom: 0;
width: 100%;
}