-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (82 loc) · 3.12 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
<!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>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="css/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">Webinar Exclusivo</p>
<h2>Aprenda a criar um software para gerar renda</h2>
<p id="date">29/10/2022 | 14h00 | 100% Gratuito</p>
<p id="description">
Neste evento você aprenderá a planejar um software SaaS. E tambem a como comercializar o produto que você desenvolveu.
</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">Paul 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="lastname"
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 tecnologia</li>
<li>Criar um projeto SaaS</li>
<li>Prospectar clientes</li>
<li>Estratégia de vendas</li>
</ul>
</div>
</div>
</div>
</body>
</html>