Skip to content

Commit

Permalink
Merge pull request #6 from Tanvi51204/main
Browse files Browse the repository at this point in the history
about section
  • Loading branch information
riyaahlawat authored Jun 14, 2024
2 parents c766d05 + eec442c commit 1292ab4
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 27 deletions.
55 changes: 30 additions & 25 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -108,31 +108,36 @@

<!-- About section -->

<div class="about-section">
<h2>About Our AWS Cloud Club</h2>
<ul class="aws-services">
<li>
<h3>Amazon EC2</h3>
<p>Amazon Elastic Compute Cloud (EC2) provides scalable computing capacity in the AWS cloud. Using Amazon EC2 eliminates your need to invest in hardware up front, so you can develop and deploy applications faster.</p>
</li>
<li>
<h3>Amazon S3</h3>
<p>Amazon Simple Storage Service (S3) is an object storage service that offers industry-leading scalability, data availability, security, and performance.</p>
</li>
<li>
<h3>AWS Lambda</h3>
<p>AWS Lambda lets you run code without provisioning or managing servers. You pay only for the compute time you consume.</p>
</li>
<li>
<h3>Amazon RDS</h3>
<p>Amazon Relational Database Service (RDS) makes it easy to set up, operate, and scale a relational database in the cloud. It provides cost-efficient and resizable capacity while automating time-consuming administration tasks.</p>
</li>
<li>
<h3>Amazon DynamoDB</h3>
<p>Amazon DynamoDB is a key-value and document database that delivers single-digit millisecond performance at any scale. It’s a fully managed, multi-region, multi-active, durable database with built-in security, backup and restore, and in-memory caching.</p>
</li>
</ul>
</div>

<div class="about-section">
<h1>ABOUT US</h1>
<p>AWS Cloud Clubs are vibrant communities designed for cloud enthusiasts to come together and share their passion for Amazon Web Services (AWS). These clubs provide a collaborative environment where members can learn about the latest cloud technologies, develop new skills, and work on real-world projects. By participating in AWS Cloud Clubs, individuals can gain hands-on experience with AWS services, attend workshops and seminars, and connect with industry experts and peers. The clubs aim to foster innovation, enhance technical knowledge, and prepare members for cloud-related careers by offering resources, mentorship, and networking opportunities.</p>
<h2>AWS Services</h2>
<p>AWS Services encompass a wide array of cloud computing products that offer solutions for computing power, storage, and networking, tailored to meet the needs of businesses of all sizes. These services enable companies to scale their operations quickly and efficiently, providing a robust infrastructure without the need for significant upfront investment in hardware. AWS Services include versatile tools like Amazon EC2 for scalable computing power, Amazon S3 for reliable and secure storage, and AWS Lambda for serverless computing. By leveraging AWS Services, businesses can innovate faster, improve their agility, and reduce costs, all while ensuring high performance, security, and compliance. Some of the services are listed below.</p>
<ul class="aws-services">
<li>
<h3>Amazon EC2 🚀</h3>
<p>Amazon Elastic Compute Cloud (EC2) provides scalable computing capacity in the AWS cloud. Using Amazon EC2 eliminates your need to invest in hardware up front, so you can develop and deploy applications faster.</p>
</li>
<li>
<h3>Amazon S3 💾</h3>
<p>Amazon Simple Storage Service (S3) is an object storage service that offers industry-leading scalability, data availability, security, and performance.</p>
</li>
<li>
<h3>AWS Lambda ⚡</h3>
<p>AWS Lambda lets you run code without provisioning or managing servers. You pay only for the compute time you consume.</p>
</li>
<li>
<h3>Amazon RDS 🗄️</h3>
<p>Amazon Relational Database Service (RDS) makes it easy to set up, operate, and scale a relational database in the cloud. It provides cost-efficient and resizable capacity while automating time-consuming administration tasks.</p>
</li>
<li>
<h3>Amazon DynamoDB 📊</h3>
<p>Amazon DynamoDB is a key-value and document database that delivers single-digit millisecond performance at any scale. It’s a fully managed, multi-region, multi-active, durable database with built-in security, backup and restore, and in-memory caching.</p>
</li>
</ul>
</div>

<!-- About ended -->

<!-- Footer starts(Samriddhi) -->
Expand Down
23 changes: 21 additions & 2 deletions styles-header.css
Original file line number Diff line number Diff line change
Expand Up @@ -60,25 +60,41 @@
}
}



.about-section {
margin-top: 20px;
padding: 40px;
background-color: var(--bgColor);
/* border-top: 1px solid #e0e0e0; */
border-top: 1px solid #e0e0e0;
}

.about-section h2 {
.about-section h1 {
font-family: "Poppins", sans-serif;
font-size: 32px;
color: var(--textColor);
margin-bottom: 20px;
text-align: center;
}

.about-section p {
font-size: 16px;
color: var(--black);
line-height: 1.6;
margin-bottom: 20px;
text-align: center;
}
.about-section h2{
font-family: "Poppins", sans-serif;
text-align: center;
}

.aws-services {
list-style: none;
padding: 0;
max-width: 800px;
margin: 0 auto;

}

.aws-services li {
Expand All @@ -89,6 +105,8 @@
font-size: 24px;
color: var(--textColor);
margin-bottom: 10px;
text-align: center;

}

.aws-services p {
Expand All @@ -97,6 +115,7 @@
line-height: 1.6;
}


.header-icons i,
.logo-and-title i {
font-size: 1.5rem;
Expand Down

0 comments on commit 1292ab4

Please sign in to comment.