-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (69 loc) · 1.77 KB
/
index.html
File metadata and controls
75 lines (69 loc) · 1.77 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
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
<html>
<head>
<style type="text/css">
button{
background-color: #818181;
color: white;
padding: 10px 12px;
cursor: pointer;
margin-right: auto;
margin-left: auto;
display: block;
font-size: 24px;
opacity: 0.6;
}
h1{
background-color: #818181;
font-family: impact;
padding: 5;
text-align: center;
color: #FFFFFF;
opacity: 0.3;
}
h3{
width: 300px;
background-color: #818181;
padding: 25px;
margin-top: 20;
margin-right: auto;
margin-left: auto;
display: block;
text-align: center;
color:white;
opacity: 0.3;
font-family: impact;
font-size: 32px;
font-stretch: expanded;
}
body{
background-color: #D8D8D8;
font-family: sans-serif;
background-image: url("https://www.toptal.com/designers/subtlepatterns/patterns/ignasi_pattern_s.png")
}
p{
font-family: arial;
text-align: center;
background-color: #818181;
padding: 5px 5px;
color: white;
opacity: 0.4;
}
</style>
<title> Website! </title>
</head>
<body>
<h1> Event Management Website </h1>
<h3> Home </h3>
<p> Ever need to organize an event with a lot of people?
Want to make check-in's easier and avoid long lines?</p>
<form method="get" action="EventCreationPage.html">
<button type="submit">+ Create an Event</button>
</form>
<form method="get" action="ClientSide.html">
<button type="submit">+ Register for an Event</button>
</form>
<form method="get" action="ClientSide.html">
<button type="submit">+ Check In for an Event</button>
</form>
</body>
</html>