-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (102 loc) · 2.9 KB
/
index.html
File metadata and controls
108 lines (102 loc) · 2.9 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Spin-off of "Project: Event invite"</title>
<style>
h1{
background-color:rgb(250, 11, 11);
color:rgb(255, 255, 255);
padding-top:15px;
padding-bottom:15px;
text-align:center;
font-weight:bold;
margin-top:0px;
}
h2{
background-color:rgb(247, 13, 13);
color:rgb(255, 255, 255);
width:300px;
margin-top:0px;
}
body{
background-color:pink;
color:black;
border:solid;
border-width:2px;
text-align:center;
border-color:white;
font-size:20px;
}
h3{
color :rgb(227, 25, 25);
font-size:24px;
}
h4{
color :rgb(227, 25, 25);
text-decoration:underline;
}
#date{
color :rgb(227, 25, 25);
}
.button{
border:none ;
color: white;
background-color: rgb(250, 11, 11);
padding: 10px 10px 10px 10px;
border-radius: 4px;
cursor: pointer;
margin-right: 20px;
margin-left: 20px;
font-weight: bold;
transition: 0.20s;
font-size:20px;
}
.button:hover{
opacity: 0.8;
}
.button :active{
opacity: 0.8;
}
.best-selection {
font-size: 18px;
background-color: rgb(250, 11, 11);
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
color: rgb(255, 255, 255);
}
.here-now:hover {
cursor: pointer;
text-decoration: underline;
color:blue;
}
.event-info{
margin:5%;
}
</style>
</head>
<body>
<h2>You're invited to..!</h2>
<h1>Business workshop!</h1>
<p class="event-info">Don't miss, our hands-on business workshop perfect for entrepreneurs and professionals a like!<br>unlock your potential, enhanceyour skills and drive success. join us for insightful Strategies, networking and Growth Opportunities</p>
<h3>Guest Speakers:</h3>
<ul>
<li>WALEED YAHYA (CEO of Dall Group)</li>
<li>ROY DON (business craeter)</li>
<li>MOH IBRAHIM (the owner of TEC)</li>
</ul>
<h3>Event contents:</h3>
<ol>
<li>Good Business Knowledge</li>
<li>Lifetime Executive Group</li>
<li>leadership Development)</li>
</ol>
<p id="date"><strong>MARCH 12, 2025 <br>08:00 AM _ 11:00</strong></p>
<h4>REGISTER NOW ...!!</h4>
<p>+123-456-7890<br>business@workshop.com<br>123 anywhere St , Doncaster</p>
<button class="button"> RSVP & INFO </button>
<p class="best-selection">Register early for the best selection of the event,
<span class="here-now">here now.</span></p>
</body>
</html>