This repository was archived by the owner on Jan 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
48 lines (48 loc) · 2.12 KB
/
index.php
File metadata and controls
48 lines (48 loc) · 2.12 KB
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
<?php // PHP Scripting (Database Stuff)
?>
<!DOCTYPE html>
<html>
<head>
<title>Home | FindAVet PBC</title>
<!--Sets Meta Tags for SEO (later)-->
<meta charset="UTF-8">
<meta name="description" content="FindAVet PBC">
<meta name="keywords" content="Vet, Find, Palm Beach, County, Palm Beach County, Find a Vet, Find a Vet Palm Beach County, Find a Vet PBC, PBC">
<meta name="author" content="Michael Castiglia">
<!--Makes it look good on all devices (everything scales to the width of the screen-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Sets Stylesheet-->
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<header>
<div class="menu"> <!--Makes it easily styleable-->
<!--Also clickable, can discard checkbox and make menu with this-->
<label for="menu">
<!--For the buttons-->
<span></span>
<span></span>
<span></span>
</label>
</div>
<input type="checkbox" id="menu"> <!--Hamburger menu button for mobile (used only for css)-->
<nav>
<!--Actual Links for Navigation-->
<a href="#">Home</a> <!--Makes Navigation Faster to Same Page-->
<a href="search.php">Search</a>
<a href="about.php">About</a>
</nav>
</header>
<article>
<h2 class="header">Welcome to FindAVet PBC</h2> <!--Welcome header tag-->
</article>
<footer>
<p class="footerp">
© Michael Castiglia 2019. All Rights Reserved. This site is for the sole use of education (IB MYP Personal Project). <!--Copyright Information-->
</br>
<a href="#">Home</a> - <a href="search.php">Search</a> - <a href="about.php">About</a> <!--Links for Footer (In Case Something Breaks in Header)-->
<!--Makes Navigation Faster to Same Page-->
</p>
</footer>
</body>
</html>