-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
121 lines (120 loc) · 4.17 KB
/
about.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
<!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>threepointonefour</title>
<link rel="icon" type="image/png" href="images\314.ico" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
/>
<link rel="stylesheet" href="css/style.css" />
<style>
@import url("https://fonts.googleapis.com/css2?family=League+Spartan&display=swap");
* {
font-family: "League Spartan";
}
</style>
</head>
<body>
<!-- header -->
<section class="header" id="header">
<a href="index.html" class="logo"> threepointonefour </a>
<nav class="navbar">
<div id="close-navbar" class="fas fa-times"></div>
<a href="index.html">home</a>
<a href="about.html">about us</a>
<div class="button-container">
<a href="join.html">
<button class="clr-1"><span> Join Us </span><i></i></button>
</a>
</div>
<!-- <a href="gallery.html">Gallery</a>
<a href="#"> Donate </a> -->
</nav>
<div id="menu-btn" class="fas fa-bars"></div>
</section>
<!-- header -->
<!-- about us -->
<section class="about" id="about" style="background-color: #f5ecdf">
<section class="services" id="services">
<div class="row">
<div class="content">
<h1 class="heading" style="color: #000080">WHAT IS 3.14?</h1>
<p
style="
position: relative;
font-weight: 700;
color: #8d143c;
text-align: center;
"
>
The value of pi is small compared to other values, but pi is one
of the most significant and recognized constants in mathematics.
Like pi, we are just a small part of the world, trying to create
change and redefine education by sharing our knowledge with
younger students. 3.14 is an educational platform where college
students from our university provide online tutoring to students
between grades 6 to 10 for absolutely free. The tutors will be
students from MUJ who are passionate about the subjects taught and
have great teaching and communicative abilities.
</p>
</div>
</div>
</section>
<section class="services" id="services">
<h1 class="heading" style="color: #000080">Our Goals</h1>
<div class="box-container">
<div class="box">
<img src="images/goal_1.png" alt="" />
</div>
<div class="box">
<img src="images/goal_2.png" alt="" />
</div>
<div class="box">
<img src="images/goal_3.png" alt="" />
</div>
</div>
</section>
</section>
<!-- about us end -->
<!-- footer -->
<section class="footer">
<div class="box-container">
<div class="box">
<h3>Get In Touch</h3>
<div class="share">
<!-- <a href="#" class="fab fa-facebook-f"></a>-->
<!-- <a href="#" class="fab fa-twitter"></a>-->
<a
href="https://www.instagram.com/threepointonefour.in/"
class="fab fa-instagram"
target="_blank"
></a>
<!-- <a href="#" class="fab fa-linkedin"></a>-->
</div>
</div>
<div class="box">
<h3>contact us</h3>
<p>+91 7908958844</p>
<a href="mailto:[email protected]" class="link"
>
</div>
<div class="box">
<h3>location</h3>
<p>
CLUB<br />
MANIPAL UNIVERSITY JAIPUR, RJ <br />
INDIA
</p>
</div>
</div>
<div class="credit">© 2024 <span>threepointonefour</span></div>
</section>
<!-- footer end-->
<script src="js/script.js"></script>
</body>
</html>