-
Notifications
You must be signed in to change notification settings - Fork 0
/
fw2.html
148 lines (140 loc) · 4.36 KB
/
fw2.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Eco Ops - WB1 | EcoCity | Exotopia NFT Rewards</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f8f5;
color: #333;
line-height: 1.6;
}
header {
background: #2e8b57;
color: white;
padding: 1rem;
text-align: center;
}
nav {
background: #3cb371;
color: white;
padding: 0.5rem;
text-align: center;
}
nav a {
color: white;
margin: 0 15px;
text-decoration: none;
font-weight: bold;
}
section {
padding: 2rem;
}
h2 {
color: #2e8b57;
}
footer {
background: #2e8b57;
color: white;
text-align: center;
padding: 1rem;
position: fixed;
bottom: 0;
width: 100%;
}
.slider {
display: flex;
overflow-x: auto;
white-space: nowrap;
padding: 1rem;
scroll-behavior: smooth;
}
.slider-item {
display: inline-block;
min-width: 300px;
padding: 1.5rem;
background-color: #2e8b57;
color: white;
margin: 0 10px;
border-radius: 10px;
text-align: center;
}
.slider-item.active {
background-color: #3cb371;
}
.slider-controls {
text-align: center;
margin-top: 1rem;
}
.slider-controls button {
background-color: #3cb371;
color: white;
border: none;
padding: 0.5rem 1rem;
cursor: pointer;
margin: 0 10px;
border-radius: 5px;
}
.slider-controls button:focus {
outline: none;
}
</style>
</head>
<body>
<header>
<h1>Eco Ops - WB1 | EcoCity | Exotopia NFT Rewards System</h1>
</header>
<nav>
<a href="#overview">Overview</a>
<a href="#nft-system">NFT Rewards System</a>
<a href="#community-impact">Community Impact</a>
<a href="#bounty-program">Bounty Program</a>
</nav>
<section id="info-slider">
<h2>Project Information Stages</h2>
<div class="slider" id="infoSlider">
<div class="slider-item active" id="step1">
<h3>Step 1: Site Assessment</h3>
<p>In this step, we assess the site to understand the environmental conditions and the extent of contamination.</p>
</div>
<div class="slider-item" id="step2">
<h3>Step 2: Contaminant Identification</h3>
<p>Identify the specific contaminants present in the area to develop a targeted remediation plan.</p>
</div>
<div class="slider-item" id="step3">
<h3>Step 3: Treatment Selection</h3>
<p>Choose the best treatment strategy to address the contaminants, whether through bioremediation, phytoremediation, or other methods.</p>
</div>
<div class="slider-item" id="step4">
<h3>Step 4: Microbial Inoculation</h3>
<p>Introduce specific microbial species to break down harmful substances and improve the ecosystem's health.</p>
</div>
<div class="slider-item" id="step5">
<h3>Step 5: Monitoring</h3>
<p>Regular monitoring ensures that the remediation process is on track and adjustments can be made if needed.</p>
</div>
<div class="slider-item" id="step6">
<h3>Step 6: Evaluation & Reporting</h3>
<p>Once the remediation is complete, we evaluate the results and report on the success and impact of the project.</p>
</div>
</div>
<div class="slider-controls">
<button onclick="scrollSlider(-300)">Previous</button>
<button onclick="scrollSlider(300)">Next</button>
</div>
</section>
<footer>
<p>Eco Ops | WB1 | EcoCity | Exotopia NFT Rewards © 2024</p>
</footer>
<script>
function scrollSlider(offset) {
document.getElementById('infoSlider').scrollBy({
left: offset,
behavior: 'smooth'
});
}
</script>
</body>
</html>