This repository has been archived by the owner on Jan 26, 2023. It is now read-only.
forked from lucat1/unibo_88566_progetto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomepage.html
71 lines (70 loc) · 1.72 KB
/
homepage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Animal House Frontoffice" />
<title>Animal House</title>
</head>
<body style="margin: 0">
<div
style="
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
"
>
<a
style="
display: flex;
align-items: center;
justify-content: center;
margin: 1em 0;
padding: 1em;
width: 6em;
background: hsl(229deg, 53%, 53%);
color: white;
text-decoration: none;
font-weight: bold;
"
href="https://site212206.tw.cs.unibo.it/game/"
>game</a
>
<a
style="
display: flex;
align-items: center;
justify-content: center;
margin: 1em 0;
padding: 1em;
width: 6em;
background: hsl(207deg, 61%, 53%);
color: white;
text-decoration: none;
font-weight: bold;
"
href="https://site212206.tw.cs.unibo.it/frontoffice/"
>frontoffice</a
>
<a
style="
display: flex;
align-items: center;
justify-content: center;
margin: 1em 0;
padding: 1em;
width: 6em;
background: hsl(171deg, 100%, 41%);
color: white;
text-decoration: none;
font-weight: bold;
"
href="https://site212206.tw.cs.unibo.it/backoffice/"
>backoffice</a
>
</div>
</body>
</html>