-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsponsors.php
35 lines (30 loc) · 1.39 KB
/
sponsors.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
<?php
$pageTitle='Sponsors'; //THIS MUST BE SET FOR EACH PAGE
$stylesheet='css/sponsors.css';
require 'header-left-bar.php'; //THIS MUST BE INCLUDED FOR EACH PAGE
?>
<div class="text">
The 1st IEEE CCTA is sponsored by the IEEE Control Systems Society with technical co-sponsorship through the IEEE Robotics and Automation Society, and is organized in cooperation with the Society for Instrument and Control Engineers (SICE).
</div>
<div class="flex flex-wrap">
<div class="image-holder">
<img src="images/ieee-logo.png">
</div>
<div style="margin-left:5%" class="image-holder items-end">
<img src="images/css-logo.png">
</div>
<div class="image-holder">
<img src="images/robotics-logo.png">
</div>
<div style="margin-left:2%" class="image-holder">
<img src="images/sice-logo.png">
</div>
</div>
<!--
<div class="flex flex-column logos" style="width: 100%">
<div style="margin-top:1%;width:220px;height:85px;background:url(images/ieee-logo.png) no-repeat; background-size: 200px 65px;"></div>
<div class="" style="width:100%;height:85px;background:url(images/css-logo.png) no-repeat"></div>
<div style="margin-top:1%;width:220px;height:85px;background:url(images/robotics-logo.png) no-repeat"></div>
<div style="margin-top:1%;width:220px;height:85px;background:url(images/sice-logo.png) no-repeat"></div>
</div> -->
<?php require 'right-bar-footer.php'; //THE MUST BE INCLUDED FOR EACH PAGE ?>