-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
49 lines (31 loc) · 1.5 KB
/
index.php
File metadata and controls
49 lines (31 loc) · 1.5 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
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<html data-theme="light"></html>
<link href="style.css" rel="stylesheet" type="text/css" />
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://cdn.jsdelivr.net/npm/daisyui@4.12.10/dist/full.min.css" rel="stylesheet" type="text/css" />
<link href='https://unpkg.com/boxicons/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
</head>
<body class="h-screen flex flex-col">
<div class="navbar bg-yellow-600 text-white">
<div class="flex-1">
<a class="btn btn-ghost text-xl">COLLEGE OF TOURISM AND HOSPITALITY MANAGEMENT</a>
</div>
<div class="flex-none">
<ul class="menu menu-horizontal px-1">
<li><a href="./authentication/login.php" >Login</a></li>
<li><a href="./authentication/signup.php">Signup</a></li>
</ul>
</div>
</div>
<div class="flex items-center justify-center gap-7 h-full section">
<img src="collegelogo.png" alt="" width="400px">
<h1 class="text-5xl font-bold bg-gradient-to-r from-yellow-500 to-yellow-200 bg-clip-text text-transparent drop-shadow leading-snug">College of Tourism and <br> Hospitality Management</h1>
</div>
</body>
</html>