-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstart.aspx
118 lines (88 loc) · 3.45 KB
/
start.aspx
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<%@ Page Title="" Language="VB" MasterPageFile="~/Site.master" AutoEventWireup="false" CodeFile="start.aspx.vb" Inherits="_Default" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
<title>CAR RENTALS</title>
<style>
#P
{
text-align:center;
}
</style>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="body" Runat="Server">
<style>
.sub_div
{
width:150px; height:100px; margin-left:-7%; position:absolute;
display:none;
}
.sub_div ul li
{
list-style-type:none
}
.car_di:hover .sub_div
{
display:block
}
</style>
<!-- Header -->
<header id="header" class="skel-layers-fixed">
<h1><a href="start.aspx">CAR RENTALS </a></h1>
<nav id="nav">
<ul>
<li><a href="aboutus.aspx">ABOUT US</a></li>
<%
If (Session("u_id") <> "") Then
%>
<li><a href="uaccount.aspx">ACCOUNT</a></li>
<%
End If
%>
<li class="car_di"><a href="car.aspx">CARS</a>
<div class ="sub_div">
<ul class="">
<li style="background-color:white; width:100px;"><a href="ceconomy.aspx">Economy</a></li>
<li style="background-color:white; width:100px;"><a href="cstandard.aspx">Standard</a></li>
<li style="background-color:white; width:100px;"><a href="cluxury.aspx">Luxury</a></li>
</ul>
</div>
</li>
<li><a href="ContactUs.aspx">CONTACT US</a></li>
<%
If (Session("u_id") <> "") Then
%>
<li><a href="Logout.aspx" class="button special">Log Out</a></li>
<%
Else
%>
<li><a href="Login.aspx" class="button special">Log In</a></li>
<%
End If
%>
</ul>
</nav>
</header>
<!-- Banner -->
<section id="banner">
<div class="inner"><br /><br />
<h2>WelCome To Our Site</h2>
<p id="P">GREEN MEANS GO. ACCELERATING THE FUTURE!</p>
<ul class="actions">
<li><a href="aboutus.aspx" class="button big alt">Learn More</a></li>
<% If (Session("u_id") = "") Then%>
<li><a href="Registration.aspx" class="button big alt">Register Now</a></li>
<% End If %>
</ul>
</div>
</section>
<footer id="footer">
<center>
<div class="6u">
<ul class="copyright">
<li><strong>© Car Rentals. All rights reserved.</strong></li>
<li><strong>Design By: Shubham Ravani. </strong></li>
<%--<li>Images: <a href="http://unsplash.com">Google/Suport</a></li>--%>
</ul>
</div>
</center>
</footer>
</asp:Content>