rmcg.dev/projects/FrontendMentor/newbie/skilled-elearning-landing-page/index.html

136 lines
4.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon-32x32.png">
<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=Plus+Jakarta+Sans:wght@500;700;800&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
<title>Frontend Mentor | Skilled e-learning landing page</title>
</head>
<body>
<header>
<img src="assets/logo-dark.svg" alt="skilled logo">
<a href="">Get Started</a>
</header>
<main>
<section>
<h1>Maximize skill, minimize budget</h1>
<p>
Our modern courses across a range of in-demand skills will give you the
knowledge you need to live the life you want.
</p>
<a href="">Get Started</a>
<picture>
<!-- <source media="(min-width: 1440px)"
srcset="assets/image-hero-desktop@2x.webp 2x, assets/image-hero-desktop.webp" type="image/webp">
<source media="(min-width: 1440px)" srcset="assets/image-hero-desktop@2x.png 2x, assets/image-hero-desktop.png">
<source media="(min-width: 768px)" srcset="assets/image-hero-tablet@2x.webp 2x, assets/image-hero-tablet.webp"
type="image/webp">
<source media="(min-width: 768px)" srcset="assets/image-hero-tablet@2x.png 2x, assets/image-hero-tablet.png">
<source media="(max-width: 767px)" srcset="assets/image-hero-mobile@2x.webp 2x, assets/image-hero-mobile.webp"
type="image/webp">
<source media="(max-width: 767px)" srcset="assets/image-hero-mobile@2x.png 2x, assets/image-hero-mobile.png"> -->
<!-- // fallback in different sizes, as well as regular src. -->
<!-- mobile image 435x409, page 327x301
x2 870x818
tablet: 695x723, on page 640.71x640
x2 1390x1446
desktop: 1046x938, page 991.63x936.92
x2 2092x1876
-->
<!-- either widths, or pixel density -->
<img srcset="
assets/image-hero-mobile.png 435w,
assets/image-hero-tablet.png 695w,
assets/image-hero-desktop.png 1046w,
" sizes="
(max-width: 767px) 327px,
(max-width: 1439px) 640px,
870px,
" src="assets/image-hero-mobile.png"
alt="Woman blowing onto a mug. Top right of her is a box indicating 29k Members. On the bottom right is a box indicating 1,451 Course Hours."
class="">
</picture>
</section>
<section>
<h2>Check out our most popular courses!</h2>
<article>
<img src="assets/icon-animation.svg" alt="">
<h3>Animation</h3>
<p>
Learn the latest animation techniques to create stunning motion design and captivate your audience.
</p>
<a href="">Get Started</a>
</article>
<article>
<img src="assets/icon-design.svg" alt="">
<h3>Design</h3>
<p>
Create beautiful, usable interfaces to help shape the future of how the web looks.
</p>
<a href="">Get Started</a>
</article>
<article>
<img src="assets/icon-photography.svg" alt="">
<h3>Photography</h3>
<p>
Explore critical fundamentals like lighting, composition, and focus to capture exceptional photos.
</p>
<a href="">Get Started</a>
</article>
<article>
<img src="assets/icon-crypto.svg" alt="">
<h3>Crypto</h3>
<p>
All you need to know to get started investing in crypto. Go from beginner to advanced with this 54 hour
course.
</p>
<a href="">Get Started</a>
</article>
<article>
<img src="assets/icon-business.svg" alt="">
<h3>Business</h3>
<p>
A step-by-step playbook to help you start, scale, and sustain your business without outside investment.
</p>
<a href="">Get Started</a>
</article>
</section>
</main>
<footer>
<img src="assets/logo-light.svg" alt="skilled logo">
<a href="">Get Started</a>
</footer>
</body>
</html>