-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvisitor_page.php
More file actions
28 lines (27 loc) · 925 Bytes
/
visitor_page.php
File metadata and controls
28 lines (27 loc) · 925 Bytes
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/visitor_page.css" />
<link rel="stylesheet" href="E:/xampp/htdocs/Museum/fonts/fontawesome-free-5.10.2-web/css/all.min.css" />
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Visitor Page</title>
</head>
<body style="background:url('images/muv.jpg') no-repeat; background-size:cover; background-attachment: fixed;">
<div class="text-area">
<p>THIS IS THE<br/>
VISITOR AREA</p>
<hr></hr>
<a href="visitor_menu.php">
<input class="btn" type="button" name="" value="VISIT" />
</a>
<a href="visitor_store.php">
<input class="btn" type="button" name="" value="VISIT STORE" />
</a>
<a href="visitor_events.php">
<input class="btn" type="button" name="" value="EVENTS" />
</a>
</div>
</body>
</html>