-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
102 lines (102 loc) · 3.13 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
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Google Meet</title>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons|Material+Icons+Outlined"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="Styles/style.css" />
<link
rel="icon"
href="assets/google-meet.svg"
sizes="any"
type="image/svg+xml"
/>
</head>
<body>
<nav>
<div class="logo">
<img
class="logo-img"
src="assets/gmeet-logo.png"
alt="Google Meet Logo"
/>
<div class="logo-txt">Meet</div>
</div>
<div class="grow"></div>
<div class="datetime"></div>
<div class="circle">
<span class="material-icons-outlined">help_outline</span>
</div>
<div class="circle">
<span class="material-icons-outlined">feedback</span>
</div>
<div class="circle">
<span class="material-icons-outlined">settings</span>
</div>
<div class="circle">
<span class="material-icons-outlined">apps</span>
</div>
<img class="pfp" src="assets/avatar.jpeg" alt="avatar" />
</nav>
<div class="main-container">
<div class="container">
<div class="title">
Premium video meetings.<br />Now free for everyone.
</div>
<div class="subtitle">
We re-engineered the service we built for secure business meetings,
Google Meet, to make it free and available for all.
</div>
<div class="forms">
<form action="/room" method="GET">
<button class="new-meeting rounded">
<span class="material-icons-outlined">video_call</span>
<div>New meeting</div>
</button>
</form>
<form class="join-meeting">
<label class="rounded meet-code">
<span class="material-icons">keyboard</span>
<input
type="text"
class="meeting-code"
placeholder="Enter code or link"
/>
</label>
<input
type="submit"
value="Join"
class="rounded join hidden"
disabled
/>
</form>
</div>
</div>
<div class="promos">
<div class="promo-box slide-0">
<div class="img-row">
<div class="circle prev-slide">
<span class="material-icons-outlined">keyboard_arrow_left</span>
</div>
<img />
<div class="circle next-slide">
<span class="material-icons-outlined">keyboard_arrow_right</span>
</div>
</div>
<div class="promo-title"></div>
<div class="promo-subtitle"></div>
</div>
</div>
</div>
<script src="scripts/scripts.js"></script>
</body>
</html>