forked from amyyalex/simple-contribution
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (93 loc) · 3.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width" initial-scale="">
<meta http-equiv="X-UA-Compatible" content="IE=7">
<title>Simple Contribution</title>
<link rel="stylesheet" href="style/style.css">
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v2.1.6/css/unicons.css">
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
</head>
<body>
<nav class="navbar">
<a href="#">
<h3>Simple Contribution</h3>
</a>
<div>
<a href="https://github.com/amyyalex/simple-contribution" target="_blank"><i class="uil uil-github"
id="github-icon"></i></a>
</div>
<div id="google_translate_element"></div>
<script src="https://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
<script>
function googleTranslateElementInit(){
new google.translate.TranslateElement(
{pageLanguage: 'en'},
'google_translate_element'
);
}
</script>
</nav>
<section>
<div class="banner">
<h1>Hi Contributors!</h1>
<p>This is a simple project that will not only help you contribute to your first open source project,
but will also guide you through the entire process,<span>so whether this is your first time contributing
or you're looking for a project to contribute to,
this project is for you!</span>
</p>
<a href="https://discord.gg/JhCdztuAcm" target="_blank" class="button">
<span class="button_lg">
<span class="button_sl"></span>
<span class="button_text">Join a Community</span>
</span>
</a>
</div>
</section>
<section class="home-content">
<h2>Add your Contribution!</h2>
<p>Add your different social media platform and get other contributors to see your work and follow you!</p>
<div class="cards">
<!-- Template for contributor cards -->
<template id="contributor-card">
<div class="card" data-aos="fade-up">
<div class="card-details">
<h1></h1>
<h5></h5>
<p></p>
</div>
<div class="social-icon">
<!-- Social icons will be added here -->
</div>
<p class="connect">Let's Connect!</p>
</div>
</template>
<!-- END OF TEMPLATE -->
</div>
</section>
<section>
<div class="contribute" data-aos="fade-up" data-aos-delay="300">
<div class="contribute-container">
<h1>Thanks for your Contribution<i class="fa-solid fa-leaf-heart"></i></i></h1>
<hr class="line">
<p>I appreciate you for contributing and being part of this amazing project, I hope you feel proud of
yourself.<br /> Don't forget to leave a star!<i class="uil uil-star"></i></p>
<a href="https://github.com/amyyalex/simple-contribution" class="click-button1"
target="_blank">Contribute here
</a>
</div>
</section>
<footer id="footer">
<div class="copyright">
Copyright © Designed 2022 by Simple Contribution
</div>
</footer>
<script src="./app.js"></script>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init();
</script>
</body>
</html>