-
Notifications
You must be signed in to change notification settings - Fork 0
/
support-approvideo.html
85 lines (74 loc) · 4 KB
/
support-approvideo.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Approvideo - Sustainable DIY Solutions</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-100 font-sans">
<header class="bg-green-500 py-4">
<div class="container mx-auto text-center text-white">
<h1 class="text-3xl font-bold">Welcome to Approvideo</h1>
<p class="text-lg">Sustainable solutions for the DIY sector</p>
</div>
</header>
<main class="container mx-auto py-8">
<section class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div>
<img src="images/hero-image.jpg" alt="Hero Image" class="rounded-lg shadow-md">
</div>
<div>
<h2 class="text-2xl font-bold mb-4">Empowering DIYers for a Sustainable Future</h2>
<p class="text-gray-700">
Approvideo is your one-stop platform for practical, collaborative content on a wide range of sustainable DIY topics. We're building a community where you can learn and share knowledge about:
</p>
<ul class="list-disc list-inside text-gray-700 mt-4">
<li>**Shelter:** From temporary shelters to permanent housing, insulation, ventilation, and natural building techniques.</li>
<li>**Water:** Water filtration, purification, storage, distribution, and urban water solutions.</li>
<li>**Waste Management:** Composting, recycling, upcycling, hygiene, zero waste, and advocating for producer responsibility.</li>
<li>**Energy:** Harnessing solar, wind, and hydropower; exploring biogas; and mastering motors, wiring, compressors, HVAC, plumbing, and energy-efficient design.</li>
<li>**Appropriate Technology:** Sustainable solutions for agriculture, construction, healthcare, and community development, including PTSD care and field medicine.</li>
<li>**Agronomy:** Integrated pest management, soil improvement, cover cropping, diversified agriculture, specialty crops, and organic techniques.</li>
</ul>
<p class="text-gray-700 mt-4">
Join us in creating a greener future through DIY!
</p>
</div>
</section>
<section class="py-8">
<h2 class="text-2xl font-bold mb-4">Support Our Mission</h2>
<p class="text-gray-700">
Your donation will help us expand our library of sustainable DIY resources, reach a wider audience, and promote eco-conscious practices in the DIY community.
</p>
<button class="bg-green-500 hover:bg-green-700 text-white font-bold py-2 px-4 rounded mt-6">
Donate Now
</button>
</section>
</main>
<footer class="bg-gray-200 py-4">
<div class="container mx-auto text-center text-gray-700">
© 2024 Approvideo. All rights of Original authors reserved. Educational Act content.
<br>
<a href="#" class="text-blue-500 hover:underline">Terms of Service</a> |
<a href="#" class="text-blue-500 hover:underline">Privacy Policy</a> |
<a href="#" class="text-blue-500 hover:underline">Contact Us</a>
</div>
</footer>
<script>
document.addEventListener('DOMContentLoaded', (event) => {
const floatingIcons = document.querySelectorAll('.floating-icon');
function randomizeIconPosition(icon) {
const x = Math.random() * (window.innerWidth - icon.offsetWidth);
const y = Math.random() * (window.innerHeight - icon.offsetHeight);
const delay = Math.random() * 5; // Random delay up to 5 seconds
icon.style.left = `${x}px`;
icon.style.top = `${y}px`;
icon.style.animationDelay = `${delay}s`;
icon.classList.add('active');
}
floatingIcons.forEach(randomizeIconPosition);
});
</script>
</body>
</html>