-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (70 loc) · 2.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Webinar de TI</title>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet">
<!-- Estilos -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="about-container">
<div id="brand">
<img src="img/saasweeklogo.png" alt="Saas Week">
<h1>Saas Week</h1>
</div>
<p id="exclusive">Webniar exclusivo</p>
<h2>Aprenda a criar um software para gerar renda</h2>
<p id="date">25/12/2023 | 14h00 | 100% gratuito </p>
<p id="descritipion">Neste evento você aprendera a planejar um software Saas. E também a como comercializar o
produto que você desenvolver</p>
<h4>Palestrantes</h4>
<div id="users-container">
<div class="user-card">
<img src="img/user_1.jpg" alt="Paul Smith">
<p class="user-name">Paulo Smith</p>
<p class="user-role">Gerente de Marketing</p>
</div>
<div class="user-card">
<img src="img/user_2.jpg" alt="Jon Doe">
<p class="user-name">Jon Doe</p>
<p class="user-role">Tech Lead</p>
</div>
<div class="user-card">
<img src="img/user_3.jpg" alt="Brad Young">
<p class="user-name">Brad Young</p>
<p class="user-role">Empreendedor</p>
</div>
</div>
</div>
<div id="form-container">
<div id="form-inner">
<h3>Se inscreva</h3>
<p>Não perca a oportunidade de aprender com especialistas e tirar suas dúvidas</p>
<form id="register-form">
<div id="name-container">
<input type="text" name="name" id="name" placeholder="Nome" />
<input type="text" name="lastname" id="lastame" placeholder="Sobrenome" />
</div>
<input type="email" name="email" id="email" placeholder="Digite seu e-mail" />
<input type="submit" value="Cadastrar" />
</form>
<div id="benefits">
<h4>O que você vai aprender</h4>
<ul>
<li>Como escolher uma stack de tecnologias</li>
<li>Criar um projeto Saas</li>
<li>Prospctar clientes</li>
<li>Estratégias de vendas</li>
</ul>
</div>
</div>
</div>
</body>
</html>