-
Notifications
You must be signed in to change notification settings - Fork 19
/
index.php
40 lines (30 loc) · 979 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Home - INFO 2300</title>
<link rel="stylesheet" type="text/css" href="styles/site.css">
</head>
<body>
<header>
<h1 id="title">Home - INFO 2300</h1>
<nav id="menu">
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="citations.php">Citations</a></li>
</ul>
</nav>
</header>
<main>
<h2>INFO/CS 2300; NBA 5301</h2>
<p>This website is rendered server-side in PHP.</p>
<!-- Note: Avoid outputting your PHP version in your production HTML. -->
<!-- Malicious actors may use the version to try and hack your website. -->
<p>You're running PHP version: <strong><?php echo phpversion();</strong>.</p>
</main>
<footer>
<p>Contact Information: <a href="mailto:[email protected]">[email protected]</a>.</p>
</footer>
</body>
</html>