-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDefault.aspx
52 lines (45 loc) · 2.11 KB
/
Default.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
<%@ Page Title="" Language="C#" MasterPageFile="~/AirlineTicketBookingMaster.Master" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="AirlineTicketBookingProject.Default" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<div class="container" style="margin-top:6%">
<div class="row">
<div class="col-lg-12">
<asp:Image ID="imgFlight" ImageAlign="AbsMiddle" ImageUrl="~/img/home.jpg" style="width:100%" runat="server" />
</div>
<div class="col-lg-12" style="margin-top:2%">
<div class="panel panel-default">
<div class="panel-heading">
<div class=" panel-title">
<h3>Introduction To The Airline Flight Booking</h3>
</div>
</div>
<div class="panel-body">
<p style="font-size:large">
Airline Flight Booking System is Web Based application,That works with in centralised network.
</p>
</div>
</div>
</div>
<div class="col-lg-12" style="margin-top:2%">
<div class="panel panel-default">
<div class="panel-heading">
<div class=" panel-title">
<h3>Why Online Flight Booking is Important?</h3>
</div>
</div>
<div class="panel-body" style="font-size:large">
<ul>
<li>
Economic & Easy
</li>
<li>
Quick & Saves Time
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</asp:Content>