Notes
Notes - notes.io |
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Webinar Cards</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container-fluid webinar-wrapper">
<div class="row">
<div class="col-lg-2 d-none d-lg-block">
<!-- Left Navigation -->
</div>
<div class="col-lg-10 col-12">
<div class="webinar-header-row d-flex justify-content-between align-items-center mb-4">
<h2 class="webinar-title">Seminar</h2>
<div class="webinar-nav">
<button class="webinar-nav-btn"><</button>
<button class="webinar-nav-btn">></button>
</div>
</div>
<div class="d-flex flex-wrap gap-4 justify-content-start">
<!-- Card 1 -->
<div class="webinar-card">
<div>
<div class="webinar-badges">
<span class="webinar-badge">Web Seminar</span>
<span class="webinar-badge">Product</span>
</div>
<h3 class="webinar-session-title">Lung Cancer Academy Webinar</h3>
<div class="webinar-main-content">
<p class="webinar-description">
Understanding unmet needs in NSCLC treatment and recent advances.
</p>
<img src="https://via.placeholder.com/160x100" alt="Webinar" class="webinar-img" />
</div>
<div class="webinar-timing">2025/03/18 (Tue)<br />19:00 - 19:40</div>
<a href="#" class="webinar-link">More details here</a>
</div>
<button class="webinar-btn">Register →</button>
</div>
<!-- Card 2 -->
<div class="webinar-card">
<div>
<div class="webinar-badges">
<span class="webinar-badge">Web Seminar</span>
<span class="webinar-badge">Product</span>
</div>
<h3 class="webinar-session-title">UC Advanced Seminar</h3>
<div class="webinar-main-content">
<p class="webinar-description">
Discussion on emerging treatment options and expert opinions.
</p>
<img src="https://via.placeholder.com/160x100" alt="Webinar" class="webinar-img" />
</div>
<div class="webinar-timing">2025/03/20 (Thu)<br />18:00 - 18:45</div>
<a href="#" class="webinar-link">More details here</a>
</div>
<button class="webinar-btn">Register →</button>
</div>
<!-- Card 3 -->
<div class="webinar-card">
<div>
<div class="webinar-badges">
<span class="webinar-badge">Web Seminar</span>
<span class="webinar-badge">Product</span>
</div>
<h3 class="webinar-session-title">Expert Web Seminar</h3>
<div class="webinar-main-content">
<p class="webinar-description">
Latest research insights into immunotherapy-based solutions.
</p>
<img src="https://via.placeholder.com/160x100" alt="Webinar" class="webinar-img" />
</div>
<div class="webinar-timing">2025/03/25 (Fri)<br />20:00 - 20:45</div>
<a href="#" class="webinar-link">More details here</a>
</div>
<button class="webinar-btn">Register →</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
________________________________________________________________________________________________________________________________
CSS
.webinar-wrapper {
padding: 20px;
}
.webinar-header-row {
margin-bottom: 20px;
}
.webinar-title {
font-size: 24px;
font-weight: 700;
}
.webinar-nav-btn {
background-color: #0056d2;
color: #fff;
border: none;
border-radius: 50%;
width: 36px;
height: 36px;
margin-left: 6px;
}
.webinar-card {
width: 370px;
height: 415px;
border: 1px solid #ddd;
border-radius: 12px;
padding: 20px;
display: flex;
flex-direction: column;
justify-content: space-between;
background-color: #fff;
box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
.webinar-badges {
display: flex;
gap: 10px;
margin-bottom: 10px;
}
.webinar-badge {
font-size: 13px;
padding: 4px 10px;
border: 1px solid #0056d2;
border-radius: 6px;
color: #0056d2;
}
.webinar-session-title {
font-size: 18px;
font-weight: 600;
margin-bottom: 10px;
}
.webinar-main-content {
display: flex;
justify-content: space-between;
gap: 10px;
margin-bottom: 10px;
}
.webinar-description {
width: 180px;
font-size: 14px;
color: #333;
line-height: 1.4;
}
.webinar-img {
width: 160px;
height: auto;
object-fit: contain;
}
.webinar-timing {
font-size: 14px;
color: #0056d2;
margin-bottom: 10px;
}
.webinar-link {
font-size: 14px;
color: #0056d2;
text-decoration: none;
}
.webinar-btn {
width: 100%;
border: 1px solid #0056d2;
color: #0056d2;
background-color: transparent;
border-radius: 20px;
padding: 8px;
font-weight: 500;
margin-top: 6px;
}
@media (max-width: 992px) {
.webinar-card {
width: 100%;
}
}
______________________________________________________________________________________________________________________
SCSS
$primary-color: #0056d2;
.webinar-wrapper {
padding: 20px;
}
.webinar-header-row {
margin-bottom: 20px;
}
.webinar-title {
font-size: 24px;
font-weight: 700;
}
.webinar-nav-btn {
background-color: $primary-color;
color: #fff;
border: none;
border-radius: 50%;
width: 36px;
height: 36px;
margin-left: 6px;
}
.webinar-card {
width: 370px;
height: 415px;
border: 1px solid #ddd;
border-radius: 12px;
padding: 20px;
display: flex;
flex-direction: column;
justify-content: space-between;
background-color: #fff;
box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
.webinar-badges {
display: flex;
gap: 10px;
margin-bottom: 10px;
.webinar-badge {
font-size: 13px;
padding: 4px 10px;
border: 1px solid $primary-color;
border-radius: 6px;
color: $primary-color;
}
}
.webinar-session-title {
font-size: 18px;
font-weight: 600;
margin-bottom: 10px;
}
.webinar-main-content {
display: flex;
justify-content: space-between;
gap: 10px;
margin-bottom: 10px;
.webinar-description {
width: 180px;
font-size: 14px;
color: #333;
line-height: 1.4;
}
.webinar-img {
width: 160px;
height: auto;
object-fit: contain;
}
}
.webinar-timing {
font-size: 14px;
color: $primary-color;
margin-bottom: 10px;
}
.webinar-link {
font-size: 14px;
color: $primary-color;
text-decoration: none;
}
.webinar-btn {
width: 100%;
border: 1px solid $primary-color;
color: $primary-color;
background-color: transparent;
border-radius: 20px;
padding: 8px;
font-weight: 500;
margin-top: 6px;
}
@media (max-width: 992px) {
.webinar-card {
width: 100%;
}
}
![]() |
Notes is a web-based application for online taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000+ notes created and continuing...
With notes.io;
- * You can take a note from anywhere and any device with internet connection.
- * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
- * You can quickly share your contents without website, blog and e-mail.
- * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
- * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.
Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.
Easy: Notes.io doesn’t require installation. Just write and share note!
Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )
Free: Notes.io works for 14 years and has been free since the day it was started.
You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;
Email: [email protected]
Twitter: http://twitter.com/notesio
Instagram: http://instagram.com/notes.io
Facebook: http://facebook.com/notesio
Regards;
Notes.io Team
