-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (74 loc) · 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
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
85
86
<!DOCTYPE html>
<html>
<head>
<title>WSH - Watt Software House</title>
<meta charset="UTF-8">
<style>
@import url('https://fonts.googleapis.com/css2?family=ZCOOL+KuaiLe&display=swap');
</style>
<!-- icones -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/[email protected]/css/materialdesignicons.min.css">
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div class="background">
<header >
<div class="flex justify-space-between align-center">
<a class="logo" href="index.html">Watt Software House</a>
<nav>
<a href="about.html">SOBRE</a>
<a href="portfolio.html">PORTFOLIO</a>
<a href="contact.html">CONTATO</a>
</nav>
</div>
</header>
<section id="banner">
<div class="banner-content flex align-center justify-center">
<div>
<h1>Watt Software House</h1>
<p>Desenvolvendo seu software do seu jeito.</p>
</div>
</div>
</section>
<section id="projects">
<h2>Projetos</h2>
<div class="flex gap-default flex-wrap justify-center">
<div class="card">
<img src="" alt="Capa"/>
<h3 class="">BoxPass</h3>
<p class="simple-text">
Projeto desenvolvido para configuração, organização e agendamento de aulas agendadas em grupo.
</p>
</div>
<div class="card">
<img src="" alt="Capa"/>
<h3 class="">BoxPass</h3>
<p class="simple-text">
Projeto desenvolvido para configuração, organização e agendamento de aulas agendadas em grupo.
</p>
</div>
<div class="card">
<img src="" alt="Capa"/>
<h3 class="">BoxPass</h3>
<p class="simple-text">
Projeto desenvolvido para configuração, organização e agendamento de aulas agendadas em grupo.
</p>
</div>
</div>
</section>
<section id="mailing-list">
<h2>Se inscreva na nossa Mailing List</h2>
</section>
</div>
<footer>
<div class="">
<a href="https://www.linkedin.com/in/cibele-watt-615188111" target="_blank" class="footer-text"><i class="mdi mdi-linkedin"></i></a>
<a href="https://github.com/cibelewatt" target="_blank" class="footer-text"><i class="mdi mdi-github"></i></a>
<a href="https://www.instagram.com/pizzacrek_salvador" target="_blank" class="footer-text"><i class="mdi mdi-instagram"></i></a>
</div>
<p>
Todos os direitos reservados.
</p>
</footer>
</body>
</html>