-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
40 lines (34 loc) · 1.05 KB
/
header.php
File metadata and controls
40 lines (34 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<title>Shell Constructor</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="//cdn.datatables.net/1.10.19/css/jquery.dataTables.min.css">
<link rel="stylesheet" href="css/estilo.css">
<link rel="icon" href="./img/logo.png">
</head>
<style>
a{
color: grey;
}
a:hover{
color: white;
text-decoration: none;
}
#empregados-button{
margin-right: 15px;
}
}
</style>
<body>
<header style="height: 50px; background-color: #222222;">
<div class="container">
<a href="?pagina=home"><img src="./img/logo.png" title="Logo" alt="Logo" style="height: 30px; float: left; margin-top: 9px;"></a>
<div style="float: left; margin-top: 7px; margin-left: 15px; font-size: 25px; color: white;"><a href="?pagina=home">Shell Constructor</a></div>
<div style="height: 10px; margin-top: 15px; float: right; font-size: 15px;">
<a href="?pagina=empregados" id="empregados-button">Empregados</a>
<a href="?pagina=ferramentas">Ferramentas</a>
</div>
</div>
</header>