-
Notifications
You must be signed in to change notification settings - Fork 0
/
professor.php
32 lines (23 loc) · 969 Bytes
/
professor.php
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
<html lang="pt">
<html>
<head>
<title>GrowHealthy</title>
<link rel="icon" type="image/png" href="imagens/logo1.png"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="css/customize.css">
</head>
<body onload="w3_show_nav('menuProf')">
<?php require 'geral/menu.php'; ?>
<!-- Conteúdo PRINCIPAL: deslocado para direita em 270 pixels quando a sidebar é visível -->
<div class="w3-main w3-container" style="margin-left:270px;margin-top:117px;">
<div class="w3-panel w3-padding-large w3-card-4 w3-light-grey">
<h1 class="w3-jumbo">Controle: Personal</h1>
<img src="imagens/professor.png" class="w3-round-xxlarge" width="70%" style="max-width:500px">
<?php require 'geral/sobre.php';?>
<!-- FIM PRINCIPAL -->
</div>
<!-- Inclui RODAPE.PHP -->
<?php require 'geral/rodape.php';?>
</body>
</html>