-
Notifications
You must be signed in to change notification settings - Fork 2
/
events.html
95 lines (82 loc) · 2.87 KB
/
events.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
88
89
90
91
92
93
94
95
<!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">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<div class="flex-container">
<div class="flex-item left-align">
<div class="top-element">
<h1 style="text-align: center;">{<span style="color: #EA4335;">Ti</span><span
style="color: #4285F4;">me</span><span style="color:#0F9D58">li</span><span
style="color: #FBBC04;">ne</span>}</h1>
<img src="replace.png" alt="gif" style="width: 300px;">
</div>
<div class="events-flex">
<div>
<h3>23rd March</h3>
<h1>Github & Bash</h1>
<p>XYZ details</p>
<button class="know-more" style="background-color: #FBBC04;">Know More</button>
</div>
<div>
<h3>25th March</h3>
<h1>Flutter</h1>
<p>XYZ details</p>
<button class="know-more" style="background-color: #4285F4;">Know More</button>
</div>
</div>
</div>
<div class="flex-item centera-align">
<div class="center-element">
<h1 style="text-align: center;">{<span style="color: #EA4335;">Ti</span><span
style="color: #4285F4;">me</span><span style="color:#0F9D58">li</span><span
style="color: #FBBC04;">ne</span>}</h1>
<img src="replace.png" alt="gif" style="width: 700px;">
</div>
</div>
<div class="flex-item">
<div class="events-flex right-align">
<div>
<h3>24th March</h3>
<h1>Web Dev</h1>
<p>XYZ details</p>
<button class="know-more" style="background-color: #0F9D58;">Know More</button>
</div>
<div>
<h3>26th March</h3>
<h1>AI talkshow</h1>
<p>XYZ details</p>
<button class="know-more" style="background-color: #EA4335;">Know More</button>
</div>
</div>
</div>
</div>
</body>
<style>
.top-element {
display: none;
}
@media screen and (max-width: 740px) {
.center-element {
display: none;
}
.top-element {
display: block;
}
/* .events-flex{
float: left;
display: block;
} */
.flex-container {
display: flex;
align-items: center;
justify-content: center;
}
}
</style>
</html>