-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
40 lines (38 loc) · 2.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Syllavid</title>
<!--<link rel="icon" type="image/png" href="assets/icon.png">-->
<link rel="stylesheet" type="text/css" href="/stylesheet.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js" integrity="sha384-uefMccjFJAIv6A+rW+L4AHf99KvxDjWSu1z9VI8SKNVmz4sk7buKt/6v9KI65qnm" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<?php include_once('navbar.php'); ?>
<section class="jumbotron p-4">
<br></br>
<div class="container">
<img src="img/elon_musk.gif" class="mx-auto img-responsive" id="main_img" width="600" />
</div>
<br></br>
</section>
<section class="text-center" id="main_logo">
<div class="container">
<h1 class="jumbotron-heading" style="color: #007bff">Syllavid</h1>
<p class="lead text-muted">Resources for your courses, free, forever.</p>
<a href="about.php" class="btn btn-primary my-2">Learn More</a>
<a href="contact.php" class="btn btn-secondary my-2">Contact Us</a>
</div>
</section>
<footer class="footer">
<a href="#"><span class="text-muted float-right" style="margin-right: 1%">Terms of Use</span></a>
<a href="#"><span class="text-muted float-right" style="margin-right: 2%">Privacy Policy</span></a>
<a href="#"><span class="text-muted float-right" style="margin-right: 2%">Donate</span></a>
<a href="about.php"><span class="text-muted float-right" style="margin-right: 2%">About</span></a>
</footer>
</body>
</html>