-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathhome.php
44 lines (44 loc) · 1.18 KB
/
home.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
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SITE | GN</title>
<style>
body{
font-family: Arial, Helvetica, sans-serif;
background: linear-gradient(to right, rgb(20, 147, 220), rgb(17, 54, 71));
text-align: center;
color: white;
}
.box{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
background-color: rgba(0, 0, 0, 0.6);
padding: 30px;
border-radius: 10px;
}
a{
text-decoration: none;
color: white;
border: 3px solid dodgerblue;
border-radius: 10px;
padding: 10px;
}
a:hover{
background-color: dodgerblue;
}
</style>
</head>
<body>
<h1>Se inscreva no canal ;)</h1>
<h2>Prof. Gustavo Neitzke</h2>
<div class="box">
<a href="login.php">Login</a>
<a href="formulario.php">Cadastre-se</a>
</div>
</body>
</html>