forked from rocketseat-education/nlw-06-discover
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
60 lines (51 loc) · 2.09 KB
/
home.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
<!DOCTYPE html>
<head>
<title>Criar Sala - Rocket.Q</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- View Port -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- CSS -->
<link rel="stylesheet" href="styles/global.css">
<link rel="stylesheet" href="styles/home.css">
<!-- FONTS -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&family=Poppins:wght@500;700&display=swap" rel="stylesheet">
</head>
<body>
<div id="home" class="content">
<header>
<img src="assets/logo.svg" alt="Rocket.Q Logo"/>
</header>
<div id="bg">
</div>
<main>
<div class="container">
<section>
<h2>Entre como participante</h2>
<form action="">
<label class="sr-only" for="room-id">Código da sala</label>
<input type="number" id="room-id" placeholder="Código da sala">
<button>
<img src="assets/enter-room.svg" alt="Entrar na sala">
Entrar na sala
</button>
</form>
</section>
<div class="separator">
<div></div>
<div>ou</div>
<div></div>
</div>
<section>
<h2>Crie sua própria sala de forma fácil</h2>
<a href="create-room.html" class="button outlined">
<img src="assets/users.svg" alt="Criar Sala">
Criar Sala
</a>
</section>
</div>
</main>
</div>
</body>
</html>