-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIniciar_TPRM.html
75 lines (61 loc) · 1.35 KB
/
Iniciar_TPRM.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
<!DOCTYPE html>
<html>
<head>
<title>TPRM - Criar BD</title>
<meta charset="utf-8" />
<style type="text/css">
@font-face {
font-family: TPRM;
src: url("Media/Biryani/Biryani-Regular.ttf");
}
#principal_BD {
width: 500px;
height: 400px;
border-radius: 10px 10px 0px 0px;
border-bottom: 15px solid #FF6D02;
box-shadow: 0px 3px 10px #E3E3E3;
text-align: center;
position: fixed;
top: 100px;
left: 425px;
}
#img {
position: fixed;
top: 40px;
}
#txt {
color: #FF6D02;
font-family: TPRM;
padding: 70px 70px 30px 70px;
}
#area_botao_BD {
vertical-align: middle;
text-align: center;
}
#botao_BD{
background-color: #E3E3E3;
border: none;
color: #FF6D02;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 18px;
font-weight: bold;
padding: 15px 25px;
}
</style>
</head>
<body>
<div id = "principal_BD">
<div id = "logo_BD">
<div id = "img"><img src="Media/tprmlogo.png" width="300px"></div>
<div id = "txt"><h1>Clique no botão para criar o banco de dados.</h1></div>
</div>
<div id = "area_botao_BD">
<form method="post" action="criar_BD.php">
<button id="botao_BD">Criar Banco de Dados</button>
</form>
</div>
</div>
</body>
</html>