-
Notifications
You must be signed in to change notification settings - Fork 0
/
news.php
executable file
·90 lines (77 loc) · 3.24 KB
/
news.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
83
84
85
86
87
88
89
90
<?php
session_start();
?>
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>News</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<style>
@font-face {
font-family: Brasileirinha;
src: url(font/Brasileirinha.ttf);
}
@font-face {
font-family: Lobster;
src: url(font/Lobster.ttf);
}
@font-face {
font-family: Qoh;
src: url(font/qoh.ttf);
}
</style>
<ul class="nav">
<li class="navItem"><Strong><a href="index.php"><font style="color: red;">Take</font><font style="color: white">It</font></a></Strong></li>
<li class="navItem"><a href="nowShowing.php">NowShowing</a></li>
<li class="navItem"><a href="upcoming.php">Upcoming</a></li>
<li class="navItem"><Strong><a href="news.php"><font style="color: red;"><u>News</u></font></a></Strong></li>
<li class="navItem"><a href="career.php">Career</a></li>
<li class="navItem"><a href="about.php">About</a></li>
<li class="navItem"><a href="php/authmain.php"><Strong><font style="color: red;font-family: Lobster; font-size: 80%;">
<?php
if (isset($_SESSION['valid_user']))
{
echo $_SESSION['valid_user'];
}
else
{
echo 'Login';
}
?>
</font></Strong></a></li>
</ul>
<img class="logo2" src="image/logo2.png" alt="" />
<h1 class="title">News</h1>
<ul id="news">
<li>
<img src="image/News/kubo.jpg" />
<h2>Kubo And The Two Strings</h2>
<br><p>Have you seen Kubo and the Two Strings yet? It's got anall star cast, great soundtrack. But forget all that, check out the crazy amazing visuals, and all the love and care and technology that went into making it all happen!</p>
</li>
<li>
<img src="image/News/festival.jpg" />
<h2>Twenty-fourth Israeli Film Festival Opens Today</h2>
<br><p>Much like the previous iterations, the festival celebrates Israeli culture and society with films that tell compelling stories centred around issues crucial to the Israeli community that resonate universally.</p>
</li>
<li>
<img src="image/News/creed.jpg" />
<h2>New Assassin's Creed movie Images Released!</h2>
<br><p>One of the biggest video games in recent history is getting a very high profile movie adaptation. Apocalypse's Magneto Michael Fassbender and Inception's Marion Cotillard, Asassin's Creed will hit the cinemas in a few short months, and we're all getting really excited about it. </p>
</li>
<li>
<img src="image/News/pets.jpg".png/>
<h2>The Secret Life Of Pets - Top Dog In this year's Kids Movies</h2>
<br><p>The guys behind Despicable Me (and the sequel and spin-off that we've almost forgotten) have levelled up - The Secret Life of Pets is in the same league as the low-to-average Disney/Pixar films. Seriously, that's a huge compliment, because nobody does animated storytelling better!</p>
</li>
</ul>
<footer class="footer">
<p>Nanyang Technological University -- School of IEM Copy Right 2016</p>
<p>Zhao Juncheng & Zhang Hanyue</p>
<img src = "image/logo2.png" class="footerlogo">
</footer>
</body>
</html>