-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
114 lines (109 loc) · 3.87 KB
/
index.html
File metadata and controls
114 lines (109 loc) · 3.87 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AGREMP™</title>
<link rel="icon" type="image/x-icon" href="telinha.png">
<link rel="stylesheet" href="style.css">
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<nav>
<a href="index.html" class="logo">
<img src="logo nav.png" alt="Responisve Logo" style="max-width: 100%;">
</a>
</nav>
<label>
<input type="checkbox">
<div class="toggle">
<span class="top_line commom"></span>
<span class="middle_line commom"></span>
<span class="bottom_line commom"></span>
<div class="h1">MENU</div>
</div>
<div class="slide">
<ul>
<li><a href="cursos.html">E-Books</a></li>
<li><a href="novidades.html">Novidades</a></li>
</ul>
</div>
</label>
<section class="home" id="home">
<button type="button" onclick="location.href='cursos.html'" class="botao">Veja</button>
</section>
<div class="body">
<div class="wrapper">
<div class="card">
<img src="cursos.jpg">
<div class="info">
<h1>EBooks</h1>
<p>Veja nossos conteúdos!</p>
<button type="button" onclick="location.href='cursos.html'" class="botao">Veja</button>
</div>
</div>
</div>
<div class="wrapper">
<div class="card">
<img src="profissionais.jpg">
<div class="info2">
<h1>Profissionais</h1>
<p>Veja profissionais da área!</p>
<button class="botao">Veja</button>
</div>
</div>
</div>
<div class="wrapper">
<div class="card">
<img src="profissionais.jpg">
<div class="info3">
<h1>Novidades</h1>
<p>Veja as novidades de nosso site!</p>
<button type="button" onclick="location.href='novidades.html'" class="botao">Veja</button>
</div>
</div>
</div>
</div>
<section class="home2" id="home2">
<button class="botao">Veja</button>
</section>
<footer>
<div class="footercontats">
<h1>Agremp</h1>
<ul class="footerlist">
<li>
<h3>Outros</h3>
</li>
<li>
<a href="sobrenos.html" class="footerlink">Sobre Nós</a>
</li>
<li>
<a href="objetivos.html" class="footerlink">Nossos Objetivos</a>
</li>
<li>
<h3>Conteúdos</h3>
</li>
<li>
<a href="cursos.html" class="footerlink">E-books</a>
</li>
</ul>
<div class="servicoemail">
<h3>Mande seu feedback!</h3>
<p>Mande seu feedback sobre nosso site!</p>
<div class="inputgroup">
<input type="text" id="text">
<div class="inputgroupbutton">
<button>
Mandar
</button>
</div>
</div>
</div>
</div>
<div class="footercopyright">
© 2024 Agremp™ todos os direitos reservados
</div>
</footer>
</body>
</html>