-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
84 lines (77 loc) · 2.7 KB
/
Copy pathindex.php
File metadata and controls
84 lines (77 loc) · 2.7 KB
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<!-- Metas -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta http-equiv="X-UA-Compatible">
<!-- General -->
<title>Writit | Encontre profissionais.</title>
<link rel="shortcut icon" href="./assets/img/logo.svg">
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="stylesheet" href="./assets/css/index.css">
</head>
<body>
<!-- Header -->
<header>
<nav>
<a href="#"><img src="./assets/img/logo-text.svg"></a>
<ul>
<li class="link"><a href="#hero">Explore</a></li>
<li class="link"><a href="#benefits">Benefícios</a></li>
<li class="link"><a href="#newsletter">Newsletter</a></li>
<li class="cta-link"><a href="./pages/login">Entrar</a></li>
</ul>
<button>
<span></span>
<span></span>
<span></span>
</button>
</nav>
</header>
<!-- Main -->
<main>
<!-- Hero -->
<section id="hero">
<div class="text">
<h1>Writit, não perca um segundo.</h1>
<h2>
Uma plataforma oficial do Centro Paula Souza para investir em alunos altamente capacitados.
</h2>
<a href="./pages/login">Entre agora</a>
</div>
<figure>
<img src="./assets/img/hero.jpg">
</figure>
</section>
<!-- Benefits -->
<section id="benefits">
<figure>
<img src="./assets/img/benefits.jpg">
</figure>
<div class="text">
<h2>Quais são os benefícios?</h1>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Amet assumenda laborum repellendus reiciendis molestiae eligendi tempore alias magnam dolorem odio!
</p>
<a href="#newsletter">Newsletter</a>
</div>
</section>
<!-- Newsletter -->
<section id="newsletter">
<h2>Se inscreva em nossa newsletter</h2>
<form>
<fieldset>
<input type="email" id="email" spellcheck="false" autocomplete="off" placeholder=" ">
<label for="email">Digite seu e-mail</label>
</fieldset>
<button disabled>Enviar</button>
</form>
</section>
</main>
<!-- Footer -->
<?php include_once('./components/footer.php'); ?>
<!-- Application -->
<script src="./index.js"></script>
</body>
</html>