-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·53 lines (42 loc) · 1.52 KB
/
Copy pathindex.html
File metadata and controls
executable file
·53 lines (42 loc) · 1.52 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
<!DOCTYPE html>
<html lang="pt_br">
<!-- lang é um atributo -->
<head>
<!-- Meta dados -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="theme-color" content="#8257E5">
<!-- Títulos -->
<title>Proffy | Sua plataforma de estudos online</title>
<link rel="shortcut icon" href="/images/favicon.png" type="image/png"/>
<!-- Links -->
<link rel="stylesheet" href="/styles/main.css" />
<link rel="stylesheet" href="/styles/partials/page-landing.css">
<!-- Fontes -->
<link href="https://fonts.googleapis.com/css2?family=Archivo:wght@400;700&family=Poppins:wght@400;600&display=swap" rel="stylesheet">
</head>
<body id="page-landing">
<div id="container">
<div class="logo-container">
<img src="/images/logo.svg" alt="Proffy">
<h2>Sua plataforma de estudos online</h2>
</div>
<img src="/images/landing.svg" alt="Plataforma de estudos" class="hero-image">
<div class="buttons-container">
<a href="/study.html" class="study">
<img src="/images/icons/study.svg" alt="Estudar">
Estudar
</a>
<a href="/give-classes.html" class="give-classes">
<img src="/images/icons/give-classes.svg" alt="Dar aulas">
Dar aulas
</a>
</div>
<p class="total-connections">
Total de 200 conexões já realizadas
<img src="/images/icons/purple-heart.svg" alt="Coração roxo">
</p>
</div>
</body>
</html>