Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added icons to the cards #155

Open
wants to merge 2 commits into
base: gh-pages
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 22 additions & 27 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
crossorigin="anonymous" referrerpolicy="no-referrer" />

<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<!-- <ul class="menu-items">
<li><a href="#">Home</a></li>
Expand Down Expand Up @@ -108,35 +109,29 @@ <h1>About Us</h1>
<!-- Why Us Section -->
<section id="why-us" class="why-us section">
<div class="row">
<div class="card">
<span>01</span>
<h4>Cryptocurrency Price Prediction</h4>
<p>Utilize advanced algorithms to predict cryptocurrency prices, enabling informed investment decisions.
</p>
</div>

<div class="card">
<span>02</span>
<h4>Telegram Bot Integration</h4>
<p>Engage users with a Telegram bot that provides real-time updates on cryptocurrency prices and project
developments.</p>
</div>
<div class="card">
<h4><i class="fas fa-chart-line"></i> Cryptocurrency Price Prediction</h4>
<p>Utilize advanced algorithms to predict cryptocurrency prices, enabling informed investment decisions.</p>
</div>

<div class="card">
<h4><i class="fab fa-telegram-plane"></i> Telegram Bot Integration</h4>
<p>Engage users with a Telegram bot that provides real-time updates on cryptocurrency prices and project developments.</p>
</div>

<div class="card">
<h4><i class="fas fa-code-branch"></i> Open-source Collaboration</h4>
<p>Join our open-source platform to collaborate on blockchain projects, sharing knowledge and contributing to innovations.</p>
</div>

<div class="card">
<h4><i class="fas fa-book"></i> Educational Resources</h4>
<p>Access comprehensive educational materials and tutorials to enhance your understanding of blockchain technology.</p>
</div>

<div class="card">
<span>03</span>
<h4>Open-source Collaboration</h4>
<p>Join our open-source platform to collaborate on blockchain projects, sharing knowledge and
contributing to innovations.</p>
</div>

<div class="card">
<span>04</span>
<h4>Educational Resources</h4>
<p>Access comprehensive educational materials and tutorials to enhance your understanding of blockchain
technology.</p>
</div>
</div>
</section>
</section>


<!-- FAQ Section-->

Expand Down
6 changes: 4 additions & 2 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,8 @@ p.tagline.dark-mode{
.card {
background: #c18bff22;
border-radius: 10px;
padding: 1.5rem;
padding: 0.75rem;
min-height: 90px;
flex: 0 0 calc(50% - 1rem);
margin: 0.5rem;
color: #FFF;
Expand All @@ -455,11 +456,12 @@ p.tagline.dark-mode{
.card h4 {
color: #FFEB55;
font-family: "Fredoka", sans-serif;
font-size: 1.2rem;
font-size: 1.4rem;
}

.card p {
font-size: 0.9rem;
font-weight: 700;
}

/* FAQ section */
Expand Down