forked from rathilpatel/Codelabs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.php
More file actions
executable file
·113 lines (100 loc) · 3.94 KB
/
events.php
File metadata and controls
executable file
·113 lines (100 loc) · 3.94 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
109
110
111
112
113
<!DOCTYPE html>
<html>
<head>
<title>Events</title>
<?php require 'header.php' ?>
<style type="text/css">
img{
height:300px;
}
</style>
</head>
<body>
<?php require'nav.php' ?>
<br>
<br>
<div class="container">
<div class="row">
<div class="col s12 m5">
<div class="card">
<div class="card-image waves-effect waves-block waves-light ">
<img class="activator" src="Images/ALGO1.jpeg">
</div>
<div class="card-content">
<span class="card-title activator grey-text text-darken-4">Algoholic<i class="material-icons right">more_vert</i></span>
<p> <a href="algo.php" class="waves-effect waves-light btn indigo darken-4">Know more</a></p>
</div>
<div class="card-reveal">
<span class="card-title grey-text text-darken-4">Algoholic<i class="material-icons right">close</i></span>
<p>Here is some more information about this product that is only revealed once clicked on.</p>
</div>
</div>
</div>
<div class="col s12 m5 offset-m1">
<div class="card">
<div class="card-image waves-effect waves-block waves-light">
<img class="activator" src="Images/Combat_cardf.jpg">
</div>
<div class="card-content">
<span class="card-title activator grey-text text-darken-4">Combat<i class="material-icons right">more_vert</i></span>
<a href="secombat.php" class="waves-effect waves-light btn indigo darken-4">SE Combat</a>
<a href="tecombat.php" class="waves-effect waves-light btn indigo darken-4" style="margin-right:10px;">TE Combat</a>
</div>
<div class="card-reveal">
<span class="card-title grey-text text-darken-4">Combat<i class="material-icons right">close</i></span>
<p>Here is some more information about this product that is only revealed once clicked on.</p>
</div>
</div>
</div>
</div>
<!-- <div class="row">
<div class="col s12 m5">
<div class="card">
<div class="card-image waves-effect waves-block waves-light">
<img class="activator" src="Images/synergy_cardf.jpg">
</div>
<div class="card-content">
<span class="card-title activator grey-text text-darken-4">Synergy 2K17<i class="material-icons right">more_vert</i></span>
<p> <a class="waves-effect waves-light btn">Know more</a></p>
</div>
<div class="card-reveal">
<span class="card-title grey-text text-darken-4">Synergy 2K17<i class="material-icons right">close</i></span>
<p>Here is some more information about this product that is only revealed once clicked on.</p>
</div>
</div>
</div>
<div class="col s12 m5">
<div class="card">
<div class="card-image waves-effect waves-block waves-light">
<img class="activator" src="Images/synergy_cardf.jpg">
</div>
<div class="card-content">
<span class="card-title activator grey-text text-darken-4">Synergy 2K17<i class="material-icons right">more_vert</i></span>
<p> <a class="waves-effect waves-light btn">Know more</a></p>
</div>
<div class="card-reveal">
<span class="card-title grey-text text-darken-4">Synergy 2K17<i class="material-icons right">close</i></span>
<p>Here is some more information about this product that is only revealed once clicked on.</p>
</div>
</div>
</div>
<div class="col s12 m5 offset-m1">
<div class="card">
<div class="card-image waves-effect waves-block waves-light">
<img class="activator" src="Images/hackathon.jpg">
</div>
<div class="card-content">
<span class="card-title activator grey-text text-darken-4">Hackathon<i class="material-icons right">more_vert</i></span>
<p> <a class="waves-effect waves-light btn disabled">Know more</a></p>
</div>
<div class="card-reveal">
<span class="card-title grey-text text-darken-4">Hackathon<i class="material-icons right">close</i></span>
<p>Here is some more information about this product that is only revealed once clicked on.</p>
</div>
</div>
</div>
</div> -->
</div>
<?php require'footer.php' ?>
</body>
</html>