-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.php
45 lines (41 loc) · 1.77 KB
/
index.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
<?php
include_once("./header.php");
?>
<style>
body {
background-image: url(./asset/photo/home_top_bg.jpg);
background-size: cover;
}
</style>
<div class="jumbotron" style="background-color:transparent">
<div class="row">
<div class="col-md-2"></div>
<div class="col-md-5">
<div class="container text-center" style="background-color: rgba(255,255,255,0.5); -moz-border-radius: 20px; border-radius: 20px;">
<h1>網路新生包</h1><br>
<p><b>我們曾經跟你一樣 是個交大新生</b></p>
<p><b>我們曾經對這個校園一無所知</b></p><br>
<p><b>今天我們邀請你加入交大的大家庭</b></p>
<p><b>我們恭喜你,更歡迎你</b></p>
<p><b>來到國立交通大學</b></p>
<p>
<a class="btn btn-primary btn-lg" href="./slideshow.php" role="button">學聯會新生包 » </a>
<a class="btn btn-primary btn-lg" href="./direct.php" role="button">手機版 » </a>
</p><br>
<p>
<a class="btn btn-warning" href="./download_school.php" role="button">系學會資訊 » </a>
<a class="btn btn-info" href="./download_region.php" role="button">友會資訊 » </a>
<a class="btn btn-success" href="./download_club.php" role="button">社團資訊 » </a>
</p>
</div>
</div>
<div class="col-md-3 text-center">
<br><br><br><br>
<img src="./asset/photo/logo.PNG" style="width: 100%;max-width: 300px">
</div>
<div class="col-md-2"></div>
</div>
</div>
<?php
include_once("footer.php");
?>