-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
110 lines (83 loc) · 3.62 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="PT-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Code Master</title>
<link rel="icon" type="image/x-icon" href="./img/favicontrnsp.ico">
<link rel="stylesheet" href="css/estilo.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header>
<nav>
<!-- Top Navigation Menu -->
<div class="topnav">
<a href="Index.html" class="active"> <img src="./img/logo3.png" ></a>
<div id="myLinks">
<a href="Serviços.html">Serviços</a>
<a href="Contato.html">Contato</a>
<a href="Sobre.html">Fale Conosco</a>
</div>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
</nav>
</header>
<div style="padding-left:16px">
<h3>Vertical Mobile Navbar</h3>
<p>This example demonstrates how a navigation menu on a mobile/smart phone could look like.</p>
<p>Click on the hamburger menu (three bars) in the top right corner, to toggle the menu.</p>
</div>
<!--Inicio do Footer-->
<div class="footer-arrow">
<svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none">
<path d="M649.97 0L550.03 0 599.91 54.12 649.97 0z" class="shape-fill"></path>
</svg>
</div>
<footer class="main_footer container">
<div class="content">
<div class="colfooter">
<h4 class="titleFooter"> Menu</h4>
<ul>
<li><a href="Index.html" title="Página Inícial">Página Inícial</a></li>
<li><a href="Sobre.html" title="Sobre ">Sobre a Empresa</a></li>
<li><a href="Serviços.html" title="Serviços">Serviços</a></li>
<li><a href="Contato.html" title="Fale Conosco">Fale Conosco</a></li>
</ul>
</div><!--Coluna Footer 1-->
<div class="colfooter">
<h4 class="titleFooter">Contato</h4>
<p><i class="icon icon-mail"></i> [email protected]</p>
<p><i class="icon icon-phone"></i> 19 90000-0000</p>
<p><i class="icon icon-whatsapp"></i> 19 90000-0000</p>
</div><!--Coluna Footer 2-->
<div class="colfooter">
<h4 class="titleFooter"> Redes Sociais</h4>
<a href="#" class="redesocial"><span> <i class="icon icon-facebook"></i>CodeMaster</span></a>
<a href="#" class="redesocial"><span> <i class="icon icon-instagram"></i>blog.codemaster</span></a>
<a href="#" class="redesocial"><span> <i class="icon icon-twitter"></i>CodeMaster</span></a>
<a href="#" class="redesocial"><span> <i class="icon icon-pinterest"></i>CodeMaster</span></a>
</form>
</div><!--Coluna Footer 3-->
<div class="clear"></div>
</div><!--Contant-->
<div class="main_footer_copy">
<p class="m-b-footer"> Code Master - 2023, todos os direitos reservados.</p>
<p class="by"><i class="icon icon-heart-3"></i> Desenvolvido por: <a href="#" title="Loop Nerd">Ana Claudia das Neves Silva</a></p>
</div>
</footer>
<!--Fecha Footer-->
</body>
<script>
function myFunction() {
var x = document.getElementById("myLinks");
if (x.style.display === "block") {
x.style.display = "none";
} else {
x.style.display = "block";
}
}
</script>
</html>