-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (81 loc) · 6.05 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
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<link rel="icon" href="./images/icons/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="./images/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./images/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./images/icons/favicon-16x16.png">
<link rel="manifest" href="./images/icons/site.webmanifest">
<title>LetsMeet</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='styles/main.css'>
<link rel='stylesheet' type='text/css' media='screen' href='styles/room.css'>
</head>
<body>
<header id="nav">
<div class="nav--list">
<a href="./index.html">
<h3 id="logo">
<img src="./images/logo.png" alt="Site Logo">
<span>LetsMeet</span>
</h3>
</a>
</div>
<div id="nav__links">
<a class="nav__link" href="./index.html">
Lobby
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="#ede0e0" viewBox="0 0 24 24">
<path
d="M20 7.093v-5.093h-3v2.093l3 3zm4 5.907l-12-12-12 12h3v10h7v-5h4v5h7v-10h3zm-5 8h-3v-5h-8v5h-3v-10.26l7-6.912 7 6.99v10.182z" />
</svg>
</a>
<a class="nav__link" id="create__room__btn" href="./lobby.html">
Create Room
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="#ede0e0" viewBox="0 0 24 24">
<path
d="M12 0c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm6 13h-5v5h-2v-5h-5v-2h5v-5h2v5h5v2z" />
</svg>
</a>
</div>
</header>
<main class="container">
<!-- <div id="room__container"> -->
<section id="landing__wrapper">
<img id="landing__img" src="./images/preview.png" alt="">
<div id="button__wrapper">
<a class="landing__btn" href="./lobby.html">
Join meet
</a>
<a class="landing__btn" href="./lobby.html">
Create new meet
</a>
</div>
</section>
<div class="features">
<div class="feature">
<div>
<h3 class="message__author">Crisp clarity with High-Definition Video Call</h3>
<p class="message__text__bot">Indulge in the unparalleled experience of crystal-clear video calls that boast high-definition quality, creating an environment of seamless and immersive communication. Our cutting-edge technology elevates your virtual interactions to a new level, where every detail is rendered with stunning clarity and precision. The superior visual fidelity ensures that you not only see but truly experience the nuances of facial expressions and gestures, fostering a sense of connection that transcends physical distance. Whether you're engaging in professional meetings, virtual events, or connecting with loved ones, our commitment to delivering top-notch video quality guarantees that your communication is as vivid and lifelike as possible. Immerse yourself in the richness of high-definition visuals, where colors pop, and details come to life, making every video call a visually captivating journey. Say goodbye to pixelation and buffering, and embrace a world of communication where the clarity of the message is as crystal-clear as the video itself.</p>
</div>
<img src="./images/stream-1.png" class="feature__img" alt="Feature 1">
</div>
<div class="feature">
<img src="./images/stream-2.png" class="feature__img" alt="Feature 2">
<div>
<h3 class="message__author">Efficient Screen Sharing for Collaboration</h3>
<p class="message__text__bot">Facilitate seamless collaboration by effortlessly sharing your screen with participants, providing a user-friendly platform to showcase presentations, documents, and a myriad of other content. Our innovative features empower you to elevate your collaborative endeavors, enabling dynamic and interactive sessions. With a simple click, you can engage your audience with visually compelling presentations or share critical documents in real-time. This functionality not only streamlines communication but also enhances productivity, ensuring that everyone involved remains on the same page. Whether you're conducting virtual meetings, training sessions, or collaborative projects, the ability to share your screen seamlessly enhances the overall experience, fostering a collaborative environment where ideas flow freely and information is easily accessible. Embrace the power of effortless collaboration and transform your virtual interactions into engaging and productive experiences for all participants.</p>
</div>
</div>
<div class="feature">
<div>
<h3 class="message__author">Real-time collaboration through Group Chat</h3>
<p class="message__text__bot">Elevate team communication to new heights through the integration of our group chat functionality, designed to enhance collaboration and foster real-time discussions among team members. Seamlessly bring your team together, transcending geographical boundaries, with a platform that facilitates instant communication and effective collaboration. Our group chat feature empowers team members to exchange ideas, share updates, and coordinate tasks in real time, fostering a dynamic and interactive work environment. Whether you're working on projects, addressing challenges, or simply sharing insights, our platform ensures that everyone is on the same page. Embrace a collaborative culture where the flow of information is continuous, enhancing productivity and promoting a sense of unity among team members. Experience the synergy of effective communication as our group chat functionality becomes the cornerstone of your team's collaborative success, breaking down barriers and propelling your collective efforts towards shared goals.</p>
</div>
<img src="./images/stream-3.png" class="feature__img" alt="Feature 3">
</div>
</div>
</div>
</body>
</html>