forked from m301/wingtechcs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevents.php
82 lines (75 loc) · 2.67 KB
/
events.php
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
<html>
<head>
<title>Events : Wingtech</title>
<?php include "head.inc"; ?>
<!-- Custom CSS -->
<link href="assets/css/homepage.css" rel="stylesheet">
</head>
<body>
<?php include "nav.inc"; ?>
<p>
<hr>
<!--TEAM PAGE-->
<div class="container">
<div class="row">
<div class="jumbotron" style="background-color:rgba(0,0,0,0.25);padding: 5px 10px 10px 20px;
color: #f0e6db;
margin:10px;">
<div class="container">
<div class="row">
<div class="col-lg-9 col-sm-6 col-md-9 text-center">
<div class="page-header " style=" margin: 22px 0 21px;">
<h1>Events</h1>
</div>
<p>
Feel what it is to be like in a great event.
</p>
</div>
<div class="col-lg-3 col-sm-6 col-md-3">
<div class="form-group" style="padding: 70px 0 0 0;">
Don't want to miss any event ?
<button type="submit" class="btn btn-success">Subscribe</button>
</div>
</div>
</div>
</div>
</div>
<div class="page-header">
<h2><strong>
<center>UPCOMING EVENTS</center>
</strong></h2>
</div>
<div class="container">
<div class="row">
<div class="col-lg-4 col-sm-12">
<img src="assets/images/hacking.jpg" height="100px" width="300px">
<h3><b>Hacking</b></h3>
BBD campus,<br>
BBDU,Lucknow.<br><br>
26th of November,2017.<br>
<a href="#">LEARN MORE..</a>
</div>
<div class="col-lg-4 col-sm-12">
<img src="assets/images/web.jpg" height="100px" width="300px">
<h3><b>WEB DEVELOPMENT</b></h3>
BBD campus,<br>
BBDU,Lucknow.<br><br>
28th of December,2017.<br>
<a href="#">LEARN MORE..</a>
</div>
<div class="col-lg-4 col-sm-12">
<img src="assets/images/php.jpg" height="100px" width="300px">
<h3><b>php</b></h3>
BBD campus,<br>
BBDU,Lucknow.<br><br>
11th of January,2017.<br>
<a href="#">LEARN MORE..</a>
</div>
</div>
</div>
</div>
<br/>
<?php include "footer.inc"; ?>
</div>
</body>
</html>