forked from Its-Aman-Yadav/Community-Site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
our program.html
98 lines (87 loc) · 2.43 KB
/
our program.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Community Startup</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
}
header {
background: #007BFF;
color: #fff;
padding: 20px 0;
text-align: center;
}
header h1 {
margin-bottom: 10px;
}
.container {
width: 80%;
margin: 0 auto;
max-width: 1200px;
}
.mission, .join-us {
padding: 20px 0;
text-align: center;
}
.mission h2, .join-us h2 {
margin-bottom: 10px;
color: #007BFF;
}
.join-us .btn {
display: inline-block;
padding: 10px 20px;
background: #007BFF;
color: #fff;
text-decoration: none;
border-radius: 5px;
margin-top: 10px;
}
.join-us .btn:hover {
background: #0056b3;
}
footer {
background: #f4f4f4;
color: #555;
text-align: center;
padding: 10px 0;
margin-top: 20px;
}
</style>
</head>
<body>
<header>
<div class="container">
<h1>Welcome to Our Community Startup</h1>
<p>We are a group of like-minded individuals who believe in the power of coming together to achieve shared goals.</p>
</div>
</header>
<section class="mission">
<div class="container">
<h2>Our Mission</h2>
<p>Our mission is to create a safe and inclusive space where members can connect, collaborate, and make a positive impact in the world.</p>
</div>
</section>
<section class="join-us">
<div class="container">
<h2>Join Us</h2>
<p>Be a part of something bigger than yourself. Join us and help make a difference!</p>
<a href="https://discord.gg/mM9qFh2uZR" class="btn">Get Started</a>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Community Startup. All rights reserved.</p>
</div>
</footer>
</body>
</html>