Initial Commit
This commit is contained in:
83
indexes/seller_add/home.php
Normal file
83
indexes/seller_add/home.php
Normal file
@@ -0,0 +1,83 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>RoamEase</title>
|
||||
<link rel="shortcut icon" href="../../icon/favicon/favicon.ico" type="image/x-icon" />
|
||||
<link rel="icon" href="../../icon/favicon/favicon.ico" type="image/x-icon" />
|
||||
<link rel="stylesheet" href="../user/home.css?version=1" type="text/css" />
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<style>
|
||||
@keyframes slideShow {
|
||||
0% {background-image: url("../../img/travel2.jpeg");}
|
||||
25% {background-image: url("../../img/travel2.jpeg");}
|
||||
50% {background-image: url("../../img/travel3.jpg");}
|
||||
75% {background-image: url("../../img/travel4.jpg");}
|
||||
100% {background-image: url("../../img/travel2.jpeg");}
|
||||
}
|
||||
#slideshow {
|
||||
width: 80%;
|
||||
height: 600px;
|
||||
background-size: cover;
|
||||
animation: slideShow 10s infinite;
|
||||
border-radius: 15px;
|
||||
margin: 0 auto;
|
||||
position: relative;
|
||||
}
|
||||
body{
|
||||
background-color:rgb(214,214,214)
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<header>
|
||||
<div class="logo">
|
||||
<a href="home.php"><img src="../../icon/favicon/logo_white.svg" alt="RoamEase"></a>
|
||||
</div>
|
||||
|
||||
<div class="nav-links">
|
||||
<a href="../seller/home.php">Home</a>
|
||||
<a href="#">Search</a>
|
||||
<a href="../../login/username.php">Log out</a>
|
||||
</div>
|
||||
</header>
|
||||
<header>
|
||||
<nav>
|
||||
<a href="./stays.php">
|
||||
<img src="../../icon/header/stays.svg" alt="Stays">
|
||||
</a>
|
||||
<a href="foods.php">
|
||||
<img src="../../icon/header/foods.svg" alt="Foods">
|
||||
</a>
|
||||
<a href="attractions.php">
|
||||
<img src="../../icon/header/attractions.svg" alt="Attractions">
|
||||
</a>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
|
||||
<div style="font-size: 40px; color: black;text-align: center; font-family: 'Times New Roman', Times, serif;">Please select the type of product you want to add above.</div><br><br>
|
||||
<div id="slideshow"></div>
|
||||
</body>
|
||||
|
||||
<br><br><br><br><br><br>
|
||||
|
||||
<footer>
|
||||
<div class="logo">
|
||||
<a href="../../index.php"><img src="../../icon/favicon/textlogo.svg" alt="RoamEase" height="50px"></a>
|
||||
<p style="font-size:10%;">©2023 COMP3013 Group10</p>
|
||||
</div>
|
||||
|
||||
<div class="nav-links" style="font-size: 80%;">
|
||||
<a href="#" style="color: white; margin: 0 10px;">About us</a>
|
||||
<a href="#" style="color: white; margin: 0 10px;">Privacy Policy</a>
|
||||
<a href="#" style="color: white; margin: 0 10px;">Terms For Usage</a>
|
||||
</div>
|
||||
|
||||
</footer>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user