-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaboutsection.html
55 lines (47 loc) · 1.73 KB
/
aboutsection.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Section</title>
<link rel="stylesheet" href="aboutsectionstyles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Pixelify+Sans:[email protected]&display=swap" rel="stylesheet">
</head>
<body>
<div class="about-wrapper">
<!-- Main Heading -->
<h1 class="about-heading">About Us</h1>
</div>
<div class="about-section">
<!-- JECRC Container -->
<div class="about-container">
<img
src="JU-Logo.png"
alt="JECRC Image"
class="about-image">
<h3>JECRC University</h3>
<p>JECRC University is a premier institution dedicated to fostering academic excellence, innovation, and research in a vibrant campus environment.</p>
</div>
<!-- Maker Space Container -->
<div class="about-container">
<img
src="mks-logo.png"
alt="JECRC Image"
class="about-image">
<h3>MakerSpace</h3>
<p>JU Makerspace is a hub for creativity and innovation, offering state-of-the-art tools and resources for students to bring their ideas to life.</p>
</div>
<!-- Maker Carnival Container -->
<div class="about-container">
<img
src="mks-logo.png"
alt="JECRC Image"
class="about-image">
<h3>Makers Carnival</h3>
<p>The Makers Carnival is an annual event celebrating innovation, creativity, and collaboration, showcasing projects from students and professionals.</p>
</div>
</div>
</body>
</html>