-
Notifications
You must be signed in to change notification settings - Fork 0
/
eventconference.html
87 lines (75 loc) · 2.12 KB
/
eventconference.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
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html>
<head>
<title>Event/Conference Webpage</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #f0f0f0;
}
.header {
background-color: #333;
color: #fff;
text-align: center;
padding: 50px 0;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}
.event-info {
text-align: center;
padding: 40px 0;
}
.event-title {
font-size: 24px;
margin-bottom: 10px;
}
.event-date {
font-size: 18px;
color: #ff6600;
margin-bottom: 10px;
}
.event-description {
line-height: 1.6;
}
.registration-button {
background-color: #ff6600;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 4px;
font-size: 18px;
cursor: pointer;
}
.footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px 0;
}
</style>
</head>
<body>
<div class="header">
<h1>Event/Conference Name</h1>
<p>Join us for an amazing event!</p>
</div>
<div class="container">
<div class="event-info">
<h2 class="event-title">Event Details</h2>
<p class="event-date">Date: October 15-17, 2023</p>
<p class="event-description">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus gravida urna vitae dignissim. Nullam varius nunc non justo consequat, a convallis turpis convallis.</p>
<button class="registration-button">Register Now</button>
</div>
</div>
<div class="footer">
<p>© 2023 EventWebpage.com. All rights reserved.</p>
</div>
</body>
</html>