-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (68 loc) · 3.11 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!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="stylesheet" href="/meet-landing-page/style.css">
<title> Meet landing page</title>
</head>
<body>
<header class="logo"><img src="/meet-landing-page/images/logo.svg" alt=""></header>
<main class="wrapper">
<figure class="small-bg-img">
<img src="/meet-landing-page/images/tablet/image-hero.png" alt="hero image">
</figure>
<section class="hero">
<div class="hero-img-one"></div>
<div class="hero-img-two"></div>
<div class="hero-content inner-wrapper">
<h1 class="hero-title">Group Chat <span>for Everyone</span></h1>
<p class="hero-text">Meet makes it easy to connect with others face-to-face virtually and collaborate across any
device.</p>
<div class="hero-buttons">
<button type="button" class="btn btn-main"><a href="" download="preview.jpg" class="btn-a">Download
<span>v1.3</span></a></button>
<a href="#" class="btn btn-alt btn-a">What is it?</a>
</div>
</div>
</section> <!-- hero-->
<section class="circle-item-one">
<p class="circle">01</p>
</section>
<section class="image-gallery inner-wrapper">
<img src="/meet-landing-page/images/desktop/image-woman-in-videocall.jpg" alt="woman in videocall">
<img src="/meet-landing-page/images/desktop/image-women-videochatting.jpg" alt="womain videochatting">
<img src="/meet-landing-page/images/desktop/image-men-in-meeting.jpg" alt="men in meeting">
<img src="/meet-landing-page/images/desktop/image-man-texting.jpg" alt="man texting">
</section> <!-- image gallery-->
<section class="lower-content inner-wrapper">
<h3>Built for Modern Use</h2>
<h2>Smarter meetings, <span>all in one place</span></h2>
<p class="lower-text">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> <!-- lower cotent -->
<section class="footer">
<div class="footer-overlay"></div>
<div class="circle-item-two">
<p class="circle">02</p>
</div>
<div class="footer-items inner-wrapper">
<h2 class="footer-title">Experience more <span>together</span></h2>
<p class="footer-text">Stay connected with reliable HD meetings and unlimited one-on-one and group video
sessions.</p>
<button type="button" class="btn btn-alt btn-footer">
<a href="" download="preview.jpg" class="btn-a">Download <span>v1.3</span></a>
</button>
</div>
<div class="footer-att">
Challenge by
<a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>. Coded by <a
href="https://github.com/vimode/frontend-mentor-challenges">vimode</a>.
</div>
</section>
<!--footer-->
</main>
<!--wrapper-->
</body>
</html>