-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (43 loc) · 1.53 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
<!DOCTYPE html>
<html lang="pt_br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#8257E5" />
<title>Proffy | Sua plataforma de estudos online</title>
<link rel="shortcut icon" href="/images/favicon.png" type="image/png" />
<link rel="stylesheet" href="/styles/main.css" />
<link rel="stylesheet" href="/styles/partials/page-landing.css" />
<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
class="hero-image"
src="/images/landing.svg"
alt="Plataforma de Estudos"
/>
<div class="buttons-container">
<a class="study" href="/study.html">
<img src="/images/icons/study.svg" alt="Estudar" />
Estudar
</a>
<a class="give-classes" href="/give-classes.html">
<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>