-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
140 lines (115 loc) · 4.09 KB
/
index.html
File metadata and controls
140 lines (115 loc) · 4.09 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PlayVerse</title>
<link rel="stylesheet" href="style.css">
</head>
<!--lesss-->
<body>
<div class="floating-icons">
<div class="an-icon icon1"><img src="./images/an1.png" alt=""></div>
<div class="an-icon icon2"><img src="./images/an2.png" alt=""></div>
<!-- <div class="an-icon icon3"><img src="./images/an3.png"alt=""></div>-->
</div>
<section class="hero">
<div class="hero-content">
<h1 class="ascent">PlayVerse</h1>
<p>
Build your first android app and we will help you ship it to the Play Store!
</p>
<a href="#" class="btnn"> GET STARTED</a>
</div>
</section>
<section class="about">
<div class="about-content">
<h2>About PlayVerse</h2>
<p>
PlayVerse is a Hack Club YSWS where you'll build the android app you wanted. IT can be a app that solves a problem, a game,a utility app, anything you want!
</p>
</div>
</section>
<section class="Process">
<h2>How It Works</h2>
<div class="steps">
<div class="step">
<h3>1. Ideation</h3>
<p>Come up with an idea for your Android app.</p>
</div>
<div class="step">
<h3>2. Design</h3>
<p>Create wireframes and design the user interface.</p>
</div>
<div class="step">
<h3>3. Development</h3>
<p>Start coding your app using Android Studio or any preferred IDE.</p>
</div>
<div class="step">
<h3>4. Testing</h3>
<p>Test your app on different devices to ensure functionality.</p>
</div>
<div class="step">
<h3>5. Deployment</h3>
<p>Submit your app thorugh this link</p>
</div>
</section>
<section class="howitworks">
<h2> Project Guidelines</h2>
<div class="guidelines">
<p>
The app must be open source
</p>
<p>IT requires time tracking via hackatime</p>
<p>It must be built during the Hack Club YSWS duration</p>
<p>You have to dedicate 5+ for your app. THis is the minimum requirement</p>
<p>The app must have 4 unique screen (e.g home, about,setting,feature-screen, etc)</p>
<p>You can use any language supported by latest version of Android</p>
<p>The App must have 1 unique features that makes your app different</p>
</div>
</section>
<section class="FAQmain">
<h2>FAQ</h2>
<div class="faq">
<div class="faq-card">
<h3>How many projects can I build?</h3>
<p>For now, we're limiting it to one submission per person.</p>
</div>
<div class="faq-card">
<h3>What is PlayVerse?</h3>
<p>PlayVerse is a Hack Club YSWS where you'll build your own Android app from scratch .</p>
</div>
<div class="faq-card">
<h3>Do I need prior experience in Android development?</h3>
<p>No experience is required to join PlayVerse. We welcome beginners and will guide you through the entire process.</p>
</div>
<div class="faq-card">
<h3>Who is eligible?</h3>
<p>Anyone who is a high school student (or younger).</p>
</div>
<div class="faq-card">
<h3>What do I need?</h3>
<p>Any device that can run Android Studio (or you can use VS Code )</p>
</div>
<div class="faq-card">
<h3>Which programming language should I use?</h3>
<p>Whatever you want! Kotlin, React Native, Flutter -we support all of them. Just pick one and stick with it (seriously, don't switch halfway through).</p>
</div>
<div class="faq-card">
<h3>Do you have any more questions?</h3>
<p>Feel free to reach out to us on Slack at
<a href="https://hackclub.slack.com/archives/C09NXU22NMB" target="_blank">#playverse</a>
or DM @pika pika.
</p>
</div>
</div>
</div>
</section>
<Footer>
<div class="footer-content">
<p>Made with 💚 by <a href="https://github.com/nayan135">Nayan Acharya</a>
</p>
<p style="border-bottom: none;">PlayVerse</p>
</Footer>
</body>
</html>