-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
205 lines (204 loc) · 7.38 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
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Idea</title>
<!-- Google Fonts CDN -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;500&family=Ubuntu:wght@300;500&display=swap"
rel="stylesheet"
/>
<!--
<link
href="https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;600&display=swap"
rel="stylesheet"
/> -->
<!-- Font awesome CDN -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- Local Stylesheet -->
<link rel="stylesheet" href="./public/css/style.css" />
</head>
<body>
<nav>
<ul class="nav-btn-list">
<li class="nav-btn-container active">
<span></span>
<button class="nav-btn">
<span class="nav-icon">
<i class="fas fa-home"></i>
</span>
<span class="nav-title">Home</span>
</button>
<span></span>
</li>
<li class="nav-btn-container">
<span></span>
<button class="nav-btn">
<span class="nav-icon">
<i class="fas fa-lightbulb"></i>
</span>
<span class="nav-title">The Idea</span>
</button>
<span></span>
</li>
<li class="nav-btn-container">
<span></span>
<button class="nav-btn">
<span class="nav-icon">
<i class="fas fa-code-branch"></i>
</span>
<span class="nav-title">Contribute</span>
</button>
<span></span>
</li>
<li class="nav-btn-container">
<span></span>
<button class="nav-btn">
<span class="nav-icon">
<i class="fas fa-info-circle"></i>
</span>
<span class="nav-title">Information</span>
</button>
<span></span>
</li>
</ul>
</nav>
<main>
<section id="home" class="show">
<h2 class="section-heading">Welcome...</h2>
<article class="home-content">
<div class="home-qna">
<p class="qna">
<i style="text-decoration: underline; margin-right: 0.5rem">q:</i>
<span class="q">Where is the Idea?</span>
<br />
<i style="text-decoration: underline; margin-right: 0.5rem"
>A:</i
>
<span class="ans">Just slap the "The Idea" tab.</span>
</p>
<p class="qna">
<i style="text-decoration: underline; margin-right: 0.5rem">q:</i>
<span class="q">I want to contribute. How do I ?</span>
<br />
<i style="text-decoration: underline; margin-right: 0.5rem"
>A:</i
>
<span class="ans">
Just head over to the "Contribute" section and you will know
how.
</span>
</p>
<p class="qna">
<i style="text-decoration: underline; margin-right: 0.5rem">q:</i>
<span class="q">I want to know more.</span>
<br />
<i style="text-decoration: underline; margin-right: 0.5rem"
>A:</i
>
<span class="ans">Go to the information section</span>
</p>
</div>
<div class="home-image">
<img src="./public/images/idea.svg" alt="" />
</div>
</article>
</section>
<section id="idea" class="hide">
<h2 class="section-heading">What is The Idea?</h2>
<article class="idea-content">
<div class="idea-details">
<h2 class="article-title">Make a website for our own</h2>
<br />
<p class="idea-desc-tile">It will have:</p>
<ul class="idea-desc-list">
<li class="idea-desc-container">
<i class="fas fa-check check-mark"></i>
<p class="idea-desc">Team login system</p>
</li>
<li class="idea-desc-container">
<i class="fas fa-check check-mark"></i>
<p class="idea-desc">"Search for an user" system</p>
</li>
<li class="idea-desc-container">
<i class="fas fa-check check-mark"></i>
<p class="idea-desc">
Lists of team members ( Profile Card). Just like "Our Team"
page in a typical website.
</p>
</li>
<li class="idea-desc-container">
<i class="fas fa-check check-mark"></i>
<p class="idea-desc">
Different sections for different kind of developers. Like "All
Members", "Frontend Developers" section.
</p>
</li>
</ul>
</div>
<div class="idea-image">
<img src="./public/images/sharing_idea.svg" alt="" />
</div>
</article>
</section>
<section id="contribute" class="hide">
<h2 class="section-heading">How do I contribute?</h2>
<article class="contribute-content">
<div class="contribute-details">
<h2 class="article-title">So, you want to contribute...</h2>
<br />
<div class="contribute-desc">
<p>
Well, if you got skill or even if you don't, you can contribute
to our project. Just click the <strong>Button</strong> below and
you will be redirected to a Facebook Group. Post there your
interest and wait for our decision in the comment section.
</p>
<br />
<a
href="https://www.facebook.com/groups/1615501782173756/"
target="_blank"
class="contribute-btn"
>Contribute</a
>
</div>
</div>
<div class="contribute-section">
<img src="./public/images/share_your_idea.svg" alt="" />
</div>
</article>
</section>
<section id="info" class="hide">
<h2 class="section-heading">More about us</h2>
<article class="info-content">
<div class="info-details">
<h2 class="info-title">Hey there...</h2>
<div class="info-desc">
<p>
We want to develop some open source projects. It is one of the
project we will be working on. If you are interested, you can
contribute to our project. You can check "Contribute" section
for more details.
</p>
</div>
</div>
<div class="info-img">
<img src="./public/images/info.svg" alt="" />
</div>
</article>
</section>
</main>
<!-- scripts -->
<script src="./public/js/script.js"></script>
</body>
</html>