-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
96 lines (96 loc) · 2.93 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
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Site Robotica</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<nav class="site-nav grid">
<h1>Itinerario Robôtica</h1>
<ul>
<li><a href="#Participantes">Participantes</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#contact">Contate-nos</a></li>
</ul>
</nav>
<section id="welcome" class="grid">
<div class="welcome-text">
<h2>
Melhor site/portifolio do mundo <br />
CONFIA
</h2>
<p class="leading">
Site feito por três pessoas e exclusivamente <br />para o itinerario
de robotica da escola senai <br />sesi maracana.
</p>
<a href="#Participantes" class="button">Veja nossos Integrantes</a>
</div>
<div class="welcome-img">
<img src="./Images/engrenagem.png" alt="pic of engrenagem" />
</div>
</section>
<section id="Participantes">
<h3>Nossos Integrantes</h3>
<div class="Participantes grid">
<a href="#">
<img src="./Images/eu.png" alt="eu image" />
<h4>Gabriel França</h4>
</a>
<a href="#">
<img src="./Images/cris.png" alt="cris image" />
<h4>Cristyan</h4>
</a>
<a href="#">
<img src="./Images/jesus.png" alt="jesus image" />
<h4>Gabriel de Jesus</h4>
</a>
</div>
</section>
<section id="skills">
<h3>Oque utilizamos para fazer o site</h3>
<ul class="grid">
<li>
<img src="./Images/html.png" alt="comet" />
<h4>HTML</h4>
</li>
<li>
<img src="./Images/css-3.png" alt="comet" />
<h4>CSS</h4>
</li>
<li>
<img src="./Images/youtube.png" alt="comet" />
<h4>Youtube</h4>
</li>
<li>
<img src="./Images/ascensao.png" alt="comet" />
<h4>Muita fé</h4>
</li>
</ul>
</section>
<section id="contact">
<h3>Entre em Contato Conosco</h3>
<p class="leading">
Se gostou do site e quer ver mais como esse entre em contato com a gente
pelo email
</p>
<form>
<input type="text" placeholder="Nome" />
<input type="email" placeholder="Email" />
<textarea placeholder="Sua Mensagem"></textarea>
<button class="button">Enviar Email</button>
</form>
</section>
<footer>
<div class="grid">
<p class="copyright">Copyright 2069 eu mesmo</p>
<ul class="social">
<li>
<a>Redes Sociais: <br />@xdfrajola <br /> @heylui <br /> @AnjosCristyan</a>
</li>
</ul>
</div>
</footer>
</body>
</html>