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

88 lines
3.1 KiB
HTML
Raw Normal View History

<!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=Red+Hat+Display:wght@500;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<title>Frontend Mentor | Meet landing page</title>
</head>
<body>
<header>
<picture>
2022-10-24 00:08:35 +02:00
<img class="logo" src="assets/logo.svg" alt="Logo of Meet">
</picture>
</header>
<main>
<section>
2022-10-24 00:08:35 +02:00
<!-- <picture class="hero-img"> -->
<img class="hero-img" src="assets/tablet/image-hero.png" alt="Image of users of meet" aria-hidden="true">
<!-- </picture> -->
<!-- <picture class="hero-img-left"> -->
<img class="hero-img-left" src="assets/desktop/image-hero-left.png" alt="Image of users of meet"
aria-hidden="true">
<!-- </picture> -->
<section class="primary-section">
<h1 class="primary-section__heading">Group Chat for Everyone</h1>
<p class="primary-section__body">Meet makes it easy to connect with others face-to-face virtually and
collaborate across any device.</p>
<p class="btn-block">
<a class="btn btn-download" href="#">Download <span>v1.3</span></a>
<a class="btn btn-info" href="#">What is it?</a>
</p>
2022-10-22 22:27:54 +02:00
</section>
2022-10-24 00:08:35 +02:00
<!-- <picture class="hero-img-right"> -->
<img class="hero-img-right" src="assets/desktop/image-hero-right.png" alt="Image of users of meet"
aria-hidden="true">
<!-- </picture> -->
</section>
<section>
2022-10-24 00:08:35 +02:00
<div class="circle-plus-line">
<div class="circle-number">01</div>
</div>
2022-10-24 00:08:35 +02:00
<section class="images-of-users">
<img src="assets/shared/image-woman-in-videocall.jpg" alt="A Woman in a Videocall">
<img src="assets/shared/image-women-videochatting.jpg" alt="A group of women video chatting">
<img src="assets/shared/image-men-in-meeting.jpg" alt="A man in a meeting via video chat">
<img src="assets/shared/image-man-texting.jpg" alt="A man sitting and texting">
</section>
2022-10-24 00:08:35 +02:00
<p class="outline">Built for modern use</p>
<h2 class="secondary-header">Smarter meetings, all in one place</h2>
<p class="secondary-body">
Send messages, share files, show your screen, and record your meetings — all in one
workspace. Control who can join with invite-only team access, data encryption, and data export.
</p>
</section>
</main>
<footer>
2022-10-24 00:08:35 +02:00
<div class="circle-plus-line">
<div class="circle-number">02</div>
</div>
<section class="footer">
2022-10-24 00:08:35 +02:00
<h2 class="footer__header">Experience more together</h2>
<p class="footer__body">Stay connected with reliable HD meetings and unlimited one-on-one and group video
sessions.
</p>
<a class="btn btn-download" href="#">Download<span>v1.3</span></a>
</section>
</footer>
</body>
</html>