-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (94 loc) · 3.92 KB
/
index.html
File metadata and controls
101 lines (94 loc) · 3.92 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
<!DOCTYPE html>
<html lang="pt" dir="ltr">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css" integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz" crossorigin="anonymous">
<!-- CSS LOCAL -->
<link rel="stylesheet" href="./resources/assets/css/generics/generic.header.css"/>
<link rel="stylesheet" href="./resources/assets/css/generics/generic.footer.css"/>
<link rel="stylesheet" href="./resources/assets/css/page.home.css"/>
<link rel="stylesheet" href="./resources/assets/css/media.screen.css"/>
<title>Bem-Vindo(a) - TecBlog</title>
</head>
<body>
<!-- BOTAO PARA MOVER PARA CIMA -->
<div id="moveUpIcon" class="moveUpIcon" title="Ir para o Topo">
<i class="fas fa-arrow-up fa-2x"></i>
</div>
<header class="header">
<div>
<div class="header-title">
<h1><a href="./index.html">TecBlog</a></h1>
<p>Seu jornal digital sobre o mundo tecnológico</p>
</div>
<div class="header-search">
<input type="text" name="search" placeholder="O que deseja procurar?" value="">
<i class="fa fa-search" aria-hidden="true" id="icon-search"></i>
</div>
</div>
</header>
<main class="main-menu">
<div class="lineOne">
<section class="square section-jogos">
<a href="./resources/views/pages/aplicativos.html" title="Aplicaticos">
<h1>APLICATIVOS</h1>
<img src="./resources/assets/imagens/home/apps_background.png" alt="">
</a>
</section>
<section class="square section-smartphone">
<a href="./resources/views/pages/games.html" title="Games">
<h1>GAMES</h1>
<img src="./resources/assets/imagens/home/jogos_background.jpeg" alt="">
</a>
</section>
</div>
<div class="lineTwo">
<section class="square section-apps">
<a href="./resources/views/pages/smartphone.html" title="Smartphones">
<h1>SMARTPHONES</h1>
<img src="./resources/assets/imagens/home/smartphone_background.jpeg" alt="">
</a>
</section>
<section class="square section-hardware">
<a href="./resources/views/pages/hardware.html" title="Hardware">
<h1>HARDWARE</h1>
<img src="./resources/assets/imagens/home/hardware_background.jpeg" alt="">
</a>
</section>
</div>
</main>
<footer class="footer">
<div class="footer-register">
<div class="inputs-register">
<div class="inputs-register-text">
<h1>Fique por dentro das últimas postagens</h1>
<p>Preencha o formulário com o seu email para receber as últimas notícias do mundo Tecnológico!</p>
</div>
<div class="inputs-register-input">
<form method="post" action="">
<input type="email" name="email" value="" placeholder="Entre com o seu endereço de email" required autocomplete="off">
<input type="submit" name="" value="Quero Receber">
</form>
</div>
</div>
</div>
<div class="footer-infos">
<div class="list-links">
<ul>
<li><a href="#">Sobre</a></li>
<li><a href="#">Contato</a></li>
<li><a href="#">Política de Privacidade</a></li>
<li><a href="#">Termos</a></li>
</ul>
</div>
<div class="footer-copyright">
<p>© Todos os direitos Reservados - TecBloog</p>
</div>
</div>
</footer>
</body>
<script type="text/javascript" src="./resources/assets/js/mobile.js"></script>
<!-- CONTEM FUNCOES GENERICAS PARA TODAS AS PAGINAS -->
<script type="text/javascript" src="./resources/assets/js/generic.pages.js"></script>
</html>