-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (34 loc) · 1.3 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
<!DOCTYPE html>
<html lang="br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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">
<title>Proffy</title>
</head>
<body id="page-landing">
<div id="container">
<div class="logo-container">
<img src="/images/logo.svg" alt="Proffy">
<h2>Sua plataforma de ensino 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="Study">
Estudar
</a>
<a class="give-classes" href="/give-classes.html">
<img src="/images/icons/give-classes.svg" alt="Give Classes">
Dar aulas
</a>
</div>
<p class="total-connections">
Total de 285 conexões já realizadas
<img src="/images/icons/purple-heart.svg" alt="Coração roxo.">
</p>
</div>
</body>
</html>