-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (67 loc) · 2.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="reset.css" />
<link rel="stylesheet" href="style.css" />
<title>Frontend Mentor | Meet landing page</title>
</head>
<body>
<header class="logo_box">
<img src="images/logo.svg" alt="" class="logo__img" />
</header>
<main>
<h1 class="main__title">Group Chat for Everyone</h1>
<p class="main__text">
Meet makes it easy to connect with others face-to-face virtually and
collaborate across any device.
</p>
<div class="main__btn--container">
<button class="main__btn--download">Download <span> v1.3</span></button>
<button class="main__btn--what_is">What is it?</button>
</div>
<p class="main__vline">01</p>
<div class="main__grid">
<img
src="images/desktop/image-woman-in-videocall.jpg"
alt=""
class="grid__element"
/>
<img
src="images/desktop/image-women-videochatting.jpg"
alt=""
class="grid__element"
/>
<img
src="images/desktop/image-men-in-meeting.jpg"
alt=""
class="grid__element"
/>
<img
src="images/desktop/image-man-texting.jpg"
alt=""
class="grid__element"
/>
</div>
<section class="section__container">
<h2 class="main__h3">Built for modern use</h2>
<h2 class="main__h2">Smarter meetings, all in one place</h2>
<p class="section__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>
<p class="main__vline" id="vline02">02</p>
</main>
<footer>
<h2 class="footer__title">Experience more together</h2>
<p class="main__text footer__text">
Stay connected with reliable HD meetings and unlimited one-on-one and
group video sessions.
</p>
<button class="footer__btn--download">Download <span> v1.3</span></button>
</footer>
</body>
</html>