forked from Its-Aman-Yadav/Community-Site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathour program.html
115 lines (104 loc) · 2.91 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!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>
<link rel="stylesheet" href="css/bootstrap.min.css" />
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="css/animate.min.css" />
<link rel="stylesheet" href="css/style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Gorditas&family=Playpen+Sans:wght@100;500&family=Poppins&family=Prompt&family=Roboto&family=Satisfy&family=Ubuntu:wght@300;400&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
/>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
}
header {
background: linear-gradient(90deg, #007bff, #0099cc);
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: linear-gradient(90deg, #007bff, #0099cc);
color: #fff;
text-decoration: none;
border-radius: 5px;
margin-top: 10px;
transition: background-color 0.3s ease;
}
.join-us .btn:hover {
background: linear-gradient(90deg, #0056b3, #0072b3);
}
.changes{
color: azure;
}
</style>
</head>
<body>
<header>
<div class="container">
<h1>Welcome to Our Community Startup</h1>
<p class="changes">
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>
<special-footer></special-footer>
<script src="footer/footer.js"></script>
</body>
</html>